1 Setup

source("functions.R")
source("functions_sam.R")
library(cytokit)
library(ggedit)
library(kableExtra)
library(monocle)
library(patchwork)
library(readxl)
library(readr)
library(R.utils)
library(Seurat)
library(tidyverse)
library(viridis)
sample <- c("joint_cortex.seurat")
tables_directory <- "tables"
dir.create(tables_directory, showWarnings = FALSE)
monocle_objects_directory <- "monocle_objects"
dir.create(paste0("figures", "/", "5.1-hindbrain_astro_ependymal_joint_pons_clusters_20_13_15_3_6_11_beam_analysis", "/"))

1.1 Load Monocle object

load(file.path(monocle_objects_directory, "5-hindbrain_astro_ependymal_joint_pons_clusters_20_13_15_3_6_11.Rda"))

1.2 Read transcription factors.

input_directory <- "/mnt/KLEINMAN_SCRATCH/projects/blancha/analyses/njabado/single_cell/annotation/animaltfdb3.0"
input_file <- "Mus_musculus_TF.txt"
transcription_factors <- read_tsv(file.path(input_directory, input_file), col_types = cols())

2 BEAM analysis

# Reset root state for BEAM analysis
beam_results <- BEAM(monocle, branch_point = 3, cores = 12)
beam_results <- rownames_to_column(beam_results, "gene")
beam_results <- beam_results %>% select(-gene_short_name)
beam_results %>% slice(1:20) %>% kable() %>% kable_styling()
gene status family pval qval num_cells_expressed use_for_ordering
Xkr4 OK negbinomial.size 0.0762506 0.1461906 11 FALSE
Sox17 OK negbinomial.size 0.0352186 0.0758082 23 FALSE
Mrpl15 OK negbinomial.size 0.0909183 0.1690080 1940 FALSE
Lypla1 OK negbinomial.size 0.1483227 0.2514979 1490 FALSE
Tcea1 OK negbinomial.size 0.0678570 0.1325969 2129 FALSE
Rgs20 OK negbinomial.size 0.0000000 0.0000000 1615 FALSE
Atp6v1h OK negbinomial.size 0.0008580 0.0027079 1382 FALSE
Oprk1 OK negbinomial.size 0.8594185 0.9686370 18 FALSE
Rb1cc1 OK negbinomial.size 0.1235794 0.2170257 1642 FALSE
4732440D04Rik OK negbinomial.size 0.4398759 0.5905570 145 FALSE
St18 OK negbinomial.size 0.0674713 0.1319679 46 FALSE
Pcmtd1 OK negbinomial.size 0.0000002 0.0000012 2317 FALSE
Gm26901 OK negbinomial.size 0.0709320 0.1376650 42 FALSE
Sntg1 OK negbinomial.size 0.1050835 0.1900523 31 FALSE
Rrs1 OK negbinomial.size 0.0000000 0.0000000 1919 FALSE
Adhfe1 OK negbinomial.size 0.0000000 0.0000000 1765 FALSE
3110035E14Rik OK negbinomial.size 0.0238844 0.0544904 173 FALSE
Mybl1 OK negbinomial.size 0.8937557 0.9962243 61 FALSE
Vcpip1 OK negbinomial.size 0.8175322 0.9327956 1052 FALSE
1700034P13Rik OK negbinomial.size 0.0296821 0.0656779 25 FALSE
write.table(beam_results, file.path(tables_directory, "5.1-hindbrain_astro_ependymal_joint_pons_clusters_20_13_15_3_6_11_beam_results.txt"), sep="\t", quote=FALSE, row.names=FALSE)

2.1 q value < 5*10^-5 (plot_genes_branched_heatmap)

significant_genes_q_value_5_10_minus_5 <- filter(beam_results, qval < 5*10^-5) %>% .$gene 
cat("Number of significant genes: ", length(significant_genes_q_value_5_10_minus_5))
## Number of significant genes:  4521
significant_transcription_factors_q_value_5_10_minus_5 <- as.character(significant_genes_q_value_5_10_minus_5[significant_genes_q_value_5_10_minus_5 %in% transcription_factors$Symbol])
cat("Number of significant transcription factors:", length(significant_transcription_factors_q_value_5_10_minus_5))
## Number of significant transcription factors: 226
plot_genes_branched_heatmap(monocle[significant_transcription_factors_q_value_5_10_minus_5,], branch_labels=c("Ependymal cells", "Astrocytes"), cluster_rows=TRUE, num_clusters=6, show_rownames = TRUE)

plot_genes_branched_heatmap_output_q_value_5_10_minus_5 <- plot_genes_branched_heatmap(monocle[significant_transcription_factors_q_value_5_10_minus_5,], branch_labels=c("Ependymal cells", "Astrocytes"), cluster_rows=TRUE, num_clusters=1, return_heatmap=TRUE, show_rownames = TRUE)

# The RMarkdown PDF has issues, hence this custom function to save the PDF file.
save_pheatmap_pdf(plot_genes_branched_heatmap_output_q_value_5_10_minus_5[["ph_res"]], file.path("figures", "5.1-hindbrain_astro_ependymal_joint_pons_clusters_20_13_15_3_6_11_beam_analysis", "beam_plots_transcription_factors_only_q_value_5_10_minus_5_heatmap_custom.pdf"), width=16, height=36)
## pdf 
##   2
heatmap_matrix_ori_q_value_5_10_minus_5 <- plot_genes_branched_heatmap_output_q_value_5_10_minus_5[["heatmap_matrix_ori"]]
ph_res_q_value_5_10_minus_5 <- plot_genes_branched_heatmap_output_q_value_5_10_minus_5[["ph_res"]]
pheatmap_ordering_q_value_5_10_minus_5 <- rownames(heatmap_matrix_ori_q_value_5_10_minus_5[ph_res_q_value_5_10_minus_5$tree_row[["order"]],])

transcription_factors_table_q_value_5_10_minus_5 <- filter(beam_results, gene %in% significant_transcription_factors_q_value_5_10_minus_5)
# Put genes from the transcription factor table in the same order
transcription_factors_table_q_value_5_10_minus_5 <- transcription_factors_table_q_value_5_10_minus_5 %>% arrange(match(gene, pheatmap_ordering_q_value_5_10_minus_5))

write.table(transcription_factors_table_q_value_5_10_minus_5, file.path(tables_directory, "5.1-significant_transcription_factors_beam_analysis_qval_5_10_minus_5_plot_genes_branched_heatmap.txt"), sep="\t", quote=FALSE, row.names=FALSE)

heatmap_matrix_ori_q_value_5_10_minus_5 <- plot_genes_branched_heatmap_output_q_value_5_10_minus_5[["heatmap_matrix_ori"]]
heatmap_matrix_ori_q_value_5_10_minus_5 <- as.data.frame(heatmap_matrix_ori_q_value_5_10_minus_5) %>% rownames_to_column("gene")
heatmap_matrix_ori_q_value_5_10_minus_5 <- heatmap_matrix_ori_q_value_5_10_minus_5 %>% arrange(match(gene, pheatmap_ordering_q_value_5_10_minus_5))
heatmap_matrix_ori_q_value_5_10_minus_5 %>% head(20) %>% kable() %>% kable_styling() %>% scroll_box(height="200px", width="600px")
gene 100 99 98 97 96 95 94 93 92 91 90 89 88 87 86 85 84 83 82 81 80 79 78 77 76 75 74 73 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
Foxa2 2.1879345 1.8330830 1.5134764 1.2264464 0.9693410 0.7395731 0.5346582 0.3522412 0.1901148 0.0462305 -0.0812973 -0.1941905 -0.2940117 -0.3821700 -0.4599290 -0.5284161 -0.5886320 -0.6414604 -0.6876775 -0.7279610 -0.7629031 -0.7931133 -0.8192016 -0.8416821 -0.8609858 -0.8774739 -0.8914500 -0.9031689 -0.9128448 -0.9206570 -0.9267555 -0.9312654 -0.9342898 -0.9359137 -0.9362055 -0.9352198 -0.9329990 -0.9295746 -0.9249685 -0.9191946 -0.9122590 -0.9041617 -0.8948969 -0.8844538 -0.8728176 -0.8599701 -0.8458903 -0.8305552 -0.8139410 -0.7960230 -0.7767775 -0.7561821 -0.7342169 -0.7108655 -0.6861166 -0.6599645 -0.6324113 -0.6034675 -0.5731542 -0.5415040 -0.5085631 -0.4743926 -0.4390699 -0.4026907 -0.3653700 -0.3272437 -0.2884693 -0.2492274 -0.2097218 -0.1701800 -0.1308528 -0.0920143 -0.0539600 -0.0170059 0.0185144 0.0523219 0.0843226 0.1144682 0.1427269 0.1690826 0.1935346 0.2160971 0.2367981 0.2556790 0.2727933 0.2882059 0.3019917 0.3142352 0.3250289 0.3344728 0.3426731 0.3497414 0.3557939 0.3609506 0.3653347 0.3690718 0.3722896 0.3751171 0.3776846 0.3801236 0.7655511 0.6820075 0.6021086 0.5260661 0.4540417 0.3861532 0.3224817 0.2630782 0.2079691 0.1571633 0.1106573 0.0684411 0.0305032 -0.0031638 -0.0325586 -0.0576658 -0.0784511 -0.0948559 -0.1067913 -0.1141325 -0.1167112 -0.1143078 -0.1066422 -0.0933628 -0.0740331 -0.0481156 -0.0150431 0.0253258 0.0729932 0.1279982 0.1903993 0.2602568 0.3376136 0.4224759 0.5147911 0.6144259 0.7211417 0.8345707 0.9541902 1.0792987 1.2089936 1.3421512 1.4774116 1.6131706 1.7475779 1.8785464 2.0037718 2.1207651 2.2268982 2.3194632 2.3957450 2.4531059 2.4890804 2.5014761 2.4884793 2.4487571 2.3815526 2.2867673 2.1650217 2.0176914 1.8469091 1.6555314 1.4470656 1.2255578 0.9954441 0.7613740 0.5280126 0.2998374 0.0809433 -0.1251298 -0.3155320 -0.4881909 -0.6418471 -0.7760344 -0.8910127 -0.9876615 -1.0673460 -1.1317726 -1.1828438 -1.2225271 -1.2527420 -1.2752450 -1.2916259 -1.3032981 -1.3114509 -1.3170408 -1.3208079 -1.3233063 -1.3249388 -1.3259910 -1.3266608 -1.3270823 -1.3273448 -1.3275067 -1.3276058 -1.3276660 -1.3277023 -1.3277241 -1.3277372 -1.3277450
Zbtb10 2.5934131 2.2889140 2.0048080 1.7404038 1.4949248 1.2675329 1.0573504 0.8634782 0.6850123 0.5210566 0.3707345 0.2331977 0.1076337 -0.0067288 -0.1106158 -0.2047043 -0.2896207 -0.3659388 -0.4341788 -0.4948068 -0.5482419 -0.5950286 -0.6358107 -0.6711510 -0.7015350 -0.7273816 -0.7490529 -0.7668610 -0.7810754 -0.7919283 -0.7996194 -0.8043203 -0.8061778 -0.8053173 -0.8018454 -0.7958525 -0.7874149 -0.7765967 -0.7634516 -0.7480246 -0.7303537 -0.7104709 -0.6884040 -0.6641778 -0.6378156 -0.6093402 -0.5787754 -0.5461474 -0.5114859 -0.4748257 -0.4362080 -0.3956817 -0.3533050 -0.3091466 -0.2632873 -0.2158214 -0.1668578 -0.1165217 -0.0649557 -0.0123209 0.0412020 0.0954116 0.1500856 0.2049799 0.2598285 0.3143435 0.3682155 0.4211147 0.4726916 0.5225786 0.5703924 0.6157363 0.6582031 0.6973785 0.7328456 0.7642951 0.7917155 0.8151663 0.8347305 0.8505121 0.8626348 0.8712398 0.8764837 0.8785365 0.8775794 0.8738034 0.8674067 0.8585936 0.8475721 0.8345530 0.8197480 0.8033687 0.7856252 0.7667251 0.7468729 0.7262690 0.7051092 0.6835843 0.6618796 0.6401752 1.5792840 1.4003745 1.2308312 1.0707191 0.9200197 0.7786450 0.6464506 0.5232478 0.4088146 0.3029060 0.2052630 0.1156211 0.0337174 -0.0407025 -0.1078787 -0.1680314 -0.2213557 -0.2680167 -0.3081451 -0.3418318 -0.3691229 -0.3900141 -0.4044442 -0.4122880 -0.4133472 -0.4073402 -0.3939790 -0.3734151 -0.3459249 -0.3117290 -0.2710086 -0.2239198 -0.1706089 -0.1112261 -0.0459393 0.0250509 0.1014979 0.1830943 0.2694574 0.3601158 0.4544957 0.5519085 0.6515408 0.7524456 0.8535376 0.9535915 1.0512455 1.1450102 1.2332830 1.3143699 1.3865138 1.4479300 1.4968487 1.5315633 1.5504837 1.5521934 1.5355078 1.4995319 1.4437131 1.3678888 1.2723226 1.1577284 1.0252782 0.8765922 0.7137098 0.5390408 0.3552974 0.1654112 -0.0275649 -0.2205612 -0.4105995 -0.5948973 -0.7709628 -0.9366732 -1.0903347 -1.2307171 -1.3570651 -1.4690841 -1.5669052 -1.6510313 -1.7222641 -1.7815366 -1.8299550 -1.8688327 -1.8995555 -1.9234772 -1.9418493 -1.9557807 -1.9662213 -1.9739612 -1.9796423 -1.9837742 -1.9867547 -1.9888886 -1.9904061 -1.9914790 -1.9922335 -1.9927619 -1.9931305 -1.9933869
Zbtb5 1.2518322 1.1545388 1.0590245 0.9655424 0.8743289 0.7856044 0.6995745 0.6164310 0.5363530 0.4595082 0.3860541 0.3161393 0.2499051 0.1874867 0.1290144 0.0746158 0.0244166 -0.0214574 -0.0628786 -0.0997162 -0.1318426 -0.1593082 -0.1823369 -0.2011454 -0.2159366 -0.2269010 -0.2342181 -0.2380581 -0.2385823 -0.2359452 -0.2302947 -0.2217737 -0.2105207 -0.1966707 -0.1803562 -0.1617078 -0.1408549 -0.1179266 -0.0930518 -0.0663608 -0.0379846 -0.0080565 0.0232881 0.0559107 0.0896701 0.1244211 0.1600148 0.1962982 0.2331138 0.2702995 0.3076886 0.3451097 0.3823863 0.4193373 0.4557768 0.4915145 0.5263555 0.5601012 0.5925489 0.6234928 0.6527243 0.6800325 0.7052050 0.7280281 0.7482884 0.7657729 0.7802704 0.7915722 0.7994731 0.8037727 0.8042766 0.8007974 0.7931557 0.7811822 0.7647182 0.7437070 0.7183431 0.6888679 0.6555280 0.6185741 0.5782592 0.5348374 0.4885629 0.4396884 0.3884643 0.3351378 0.2799518 0.2231440 0.1649467 0.1055857 0.0452799 -0.0157590 -0.0773269 -0.1392279 -0.2012740 -0.2632854 -0.3250908 -0.3865272 -0.4474397 -0.5076816 -0.2799539 -0.2553612 -0.2306245 -0.2057282 -0.1806564 -0.1553929 -0.1299212 -0.1042245 -0.0782856 -0.0520869 -0.0256105 0.0011618 0.0282487 0.0556691 0.0834424 0.1115884 0.1401273 0.1690798 0.1984668 0.2283100 0.2586312 0.2894529 0.3207981 0.3526903 0.3851534 0.4182120 0.4518706 0.4860089 0.5204568 0.5550396 0.5895782 0.6238892 0.6577848 0.6910730 0.7235577 0.7550389 0.7853134 0.8141746 0.8414132 0.8668179 0.8901756 0.9112725 0.9298944 0.9458277 0.9588605 0.9687829 0.9753887 0.9784758 0.9778480 0.9733155 0.9646963 0.9518179 0.9345178 0.9126453 0.8860625 0.8546459 0.8182873 0.7768954 0.7303969 0.6787373 0.6218827 0.5598203 0.4925593 0.4201322 0.3425948 0.2600273 0.1725347 0.0802465 -0.0166826 -0.1180735 -0.2237224 -0.3334017 -0.4468609 -0.5638272 -0.6840072 -0.8070880 -0.9327388 -1.0606134 -1.1903514 -1.3215810 -1.4539128 -1.5867616 -1.7193894 -1.8511132 -1.9813151 -2.1094432 -2.2350113 -2.3575976 -2.4768427 -2.5924467 -2.7041667 -2.8118123 -2.9152426 -3.0000000 -3.0000000 -3.0000000 -3.0000000 -3.0000000 -3.0000000 -3.0000000
Lcorl 0.3272389 0.2856412 0.2444367 0.2037104 0.1635451 0.1240207 0.0852150 0.0472036 0.0100595 -0.0261458 -0.0613431 -0.0954649 -0.1284451 -0.1602194 -0.1907246 -0.2198986 -0.2476803 -0.2740094 -0.2988259 -0.3220704 -0.3436858 -0.3636694 -0.3820722 -0.3989455 -0.4143387 -0.4282994 -0.4408735 -0.4521054 -0.4620381 -0.4707132 -0.4781711 -0.4844509 -0.4895909 -0.4936282 -0.4965991 -0.4985391 -0.4994830 -0.4994648 -0.4985181 -0.4966757 -0.4939702 -0.4904338 -0.4860980 -0.4809944 -0.4751543 -0.4686086 -0.4613882 -0.4535240 -0.4450467 -0.4359871 -0.4263759 -0.4162441 -0.4056226 -0.3945426 -0.3830353 -0.3711323 -0.3588653 -0.3462662 -0.3333675 -0.3202016 -0.3068015 -0.2932004 -0.2794320 -0.2655301 -0.2515291 -0.2374638 -0.2233693 -0.2092811 -0.1952351 -0.1812676 -0.1674152 -0.1537150 -0.1402045 -0.1269215 -0.1139039 -0.1011784 -0.0887393 -0.0765754 -0.0646757 -0.0530288 -0.0416230 -0.0304466 -0.0194880 -0.0087350 0.0018245 0.0122026 0.0224118 0.0324645 0.0423734 0.0521511 0.0618105 0.0713645 0.0808262 0.0902086 0.0995250 0.1087887 0.1180132 0.1272120 0.1363986 0.1455868 -0.0708136 -0.0432412 -0.0154949 0.0124556 0.0406417 0.0690951 0.0978483 0.1269343 0.1563870 0.1862409 0.2165311 0.2472937 0.2785654 0.3103837 0.3427869 0.3758142 0.4095058 0.4439027 0.4790468 0.5149812 0.5517499 0.5893981 0.6279720 0.6675193 0.7080886 0.7497301 0.7924703 0.8361851 0.8806895 0.9257936 0.9713014 1.0170115 1.0627167 1.1082039 1.1532545 1.1976440 1.2411426 1.2835153 1.3245225 1.3639200 1.4014598 1.4368908 1.4699591 1.5004090 1.5279839 1.5524272 1.5734832 1.5908980 1.6044214 1.6138071 1.6188150 1.6192118 1.6147729 1.6052836 1.5905407 1.5703543 1.5445488 1.5129649 1.4754611 1.4319153 1.3822260 1.3263142 1.2641245 1.1956266 1.1208164 1.0397173 0.9523809 0.8588882 0.7593498 0.6539068 0.5427306 0.4260234 0.3040177 0.1769757 0.0451887 -0.0910236 -0.2313151 -0.3753144 -0.5226267 -0.6728363 -0.8254977 -0.9799100 -1.1351654 -1.2904100 -1.4448582 -1.5977953 -1.7485780 -1.8966352 -2.0414662 -2.1826399 -2.3197914 -2.4526195 -2.5808826 -2.7043950 -2.8230226 -2.9366784 -3.0000000 -3.0000000 -3.0000000 -3.0000000
Gm14295 -1.2564472 -1.1928450 -1.1279752 -1.0619281 -0.9948033 -0.9267101 -0.8577679 -0.7881061 -0.7178650 -0.6471952 -0.5762585 -0.5052272 -0.4342848 -0.3636252 -0.2934530 -0.2239831 -0.1554400 -0.0880578 -0.0220793 0.0422448 0.1046599 0.1649847 0.2231178 0.2789653 0.3324375 0.3834487 0.4319181 0.4777696 0.5209318 0.5613386 0.5989291 0.6336478 0.6654445 0.6942748 0.7200998 0.7428863 0.7626069 0.7792400 0.7927697 0.8031859 0.8104843 0.8146663 0.8157390 0.8137150 0.8086124 0.8004550 0.7892715 0.7750961 0.7579680 0.7379312 0.7150346 0.6893314 0.6608797 0.6297412 0.5959822 0.5596725 0.5208855 0.4796981 0.4361904 0.3904453 0.3425485 0.2925881 0.2406545 0.1868401 0.1312390 0.0739467 0.0150601 -0.0453229 -0.1071036 -0.1701829 -0.2344614 -0.2998394 -0.3662176 -0.4334970 -0.5015792 -0.5703506 -0.6396581 -0.7093473 -0.7792704 -0.8492864 -0.9192609 -0.9890667 -1.0585839 -1.1276992 -1.1963070 -1.2643083 -1.3316115 -1.3981317 -1.4637908 -1.5285176 -1.5922469 -1.6549203 -1.7164851 -1.7768947 -1.8361077 -1.8940886 -1.9508066 -2.0062358 -2.0603551 -2.1131474 -2.4032891 -2.3180980 -2.2288456 -2.1355010 -2.0380554 -1.9365247 -1.8309527 -1.7214140 -1.6080168 -1.4909060 -1.3702660 -1.2463233 -1.1193490 -0.9896608 -0.8576251 -0.7236578 -0.5882260 -0.4518474 -0.3150910 -0.1785750 -0.0429661 0.0910239 0.2226407 0.3510926 0.4755544 0.5951747 0.7091417 0.8170077 0.9184954 1.0133687 1.1014332 1.1825364 1.2565665 1.3234522 1.3831612 1.4356990 1.4811072 1.5194617 1.5508704 1.5754715 1.5934305 1.6049388 1.6102103 1.6094796 1.6029994 1.5910380 1.5738770 1.5518088 1.5251348 1.4941628 1.4592053 1.4205773 1.3785949 1.3335731 1.2858248 1.2356592 1.1833804 1.1292867 1.0736691 1.0168111 0.9589876 0.9004642 0.8414974 0.7823337 0.7232097 0.6643519 0.6059767 0.5482908 0.4914911 0.4357651 0.3812913 0.3282395 0.2767717 0.2270422 0.1791984 0.1333818 0.0897281 0.0483686 0.0094307 -0.0269614 -0.0606917 -0.0917916 -0.1204330 -0.1467861 -0.1710143 -0.1932747 -0.2137189 -0.2324936 -0.2497409 -0.2655994 -0.2802039 -0.2936865 -0.3061766 -0.3178013 -0.3286857 -0.3389532 -0.3487254 -0.3581229 -0.3672647 -0.3762688
Glmp 0.8063873 0.7852376 0.7642393 0.7434817 0.7230532 0.7030411 0.6835319 0.6646110 0.6463631 0.6288721 0.6122212 0.5964931 0.5817700 0.5681336 0.5556656 0.5444474 0.5345607 0.5260871 0.5191088 0.5137087 0.5099660 0.5078645 0.5072915 0.5081315 0.5102698 0.5135920 0.5179847 0.5233342 0.5295273 0.5364504 0.5439899 0.5520318 0.5604617 0.5691646 0.5780252 0.5869273 0.5957545 0.6043895 0.6127145 0.6206113 0.6279611 0.6346448 0.6405430 0.6455361 0.6495047 0.6523292 0.6538907 0.6540705 0.6527510 0.6498153 0.6451478 0.6386346 0.6301634 0.6196243 0.6069095 0.5919145 0.5745375 0.5546807 0.5322501 0.5071560 0.4793137 0.4486437 0.4150724 0.3785323 0.3389625 0.2963095 0.2505275 0.2015787 0.1494341 0.0940741 0.0354886 -0.0263223 -0.0913477 -0.1595656 -0.2309423 -0.3053692 -0.3825624 -0.4622121 -0.5440127 -0.6276638 -0.7128714 -0.7993493 -0.8868195 -0.9750133 -1.0636726 -1.1525498 -1.2414090 -1.3300264 -1.4181907 -1.5057034 -1.5923789 -1.6780453 -1.7625435 -1.8457279 -1.9274660 -2.0076383 -2.0861378 -2.1628700 -2.2377523 -2.3107134 -2.5171896 -2.4185006 -2.3158767 -2.2093835 -2.0991142 -1.9851925 -1.8677740 -1.7470474 -1.6232360 -1.4965989 -1.3674311 -1.2360640 -1.1028657 -0.9682400 -0.8326256 -0.6964954 -0.5603544 -0.4247379 -0.2902091 -0.1573567 -0.0267918 0.1008555 0.2249390 0.3448006 0.4597739 0.5691881 0.6724259 0.7692041 0.8593897 0.9428824 1.0196126 1.0895405 1.1526541 1.2089682 1.2585223 1.3013798 1.3376256 1.3673651 1.3907227 1.4078400 1.4188746 1.4239986 1.4233973 1.4172676 1.4058170 1.3892623 1.3678283 1.3417465 1.3112542 1.2765935 1.2380099 1.1957516 1.1500685 1.1012110 1.0494296 0.9949740 0.9380917 0.8790283 0.8180260 0.7553232 0.6911541 0.6257481 0.5593290 0.4921151 0.4243184 0.3561445 0.2877922 0.2194534 0.1513127 0.0835477 0.0163285 -0.0501820 -0.1158283 -0.1804620 -0.2439418 -0.3061333 -0.3669087 -0.4261468 -0.4837321 -0.5395552 -0.5935165 -0.6456221 -0.6959779 -0.7446900 -0.7918609 -0.8375894 -0.8819707 -0.9250970 -0.9670570 -1.0079369 -1.0478196 -1.0867855 -1.1249126 -1.1622759 -1.1989486 -1.2350011 -1.2705017 -1.3055167 -1.3401101 -1.3743438
Bhlhe40 0.3277833 0.2935038 0.2597231 0.2265960 0.1942717 0.1628930 0.1325975 0.1035176 0.0757813 0.0495121 0.0248305 0.0018541 -0.0193017 -0.0385227 -0.0556949 -0.0707043 -0.0834353 -0.0937697 -0.1015863 -0.1067590 -0.1091619 -0.1088034 -0.1058258 -0.1003712 -0.0925763 -0.0825736 -0.0704923 -0.0564600 -0.0406026 -0.0230462 -0.0039174 0.0166560 0.0385438 0.0616133 0.0857286 0.1107498 0.1365327 0.1629289 0.1897846 0.2169412 0.2442345 0.2714952 0.2985486 0.3252145 0.3513079 0.3766389 0.4010131 0.4242324 0.4460950 0.4663967 0.4849310 0.5014906 0.5158680 0.5278565 0.5372517 0.5438524 0.5474621 0.5478905 0.5449545 0.5384807 0.5283059 0.5142798 0.4962658 0.4741436 0.4478102 0.4171820 0.3821966 0.3428141 0.2990193 0.2508223 0.1982606 0.1414003 0.0803364 0.0151944 -0.0538695 -0.1265814 -0.2024196 -0.2808310 -0.3612769 -0.4432368 -0.5262126 -0.6097317 -0.6933500 -0.7766545 -0.8592643 -0.9408327 -1.0210473 -1.0996305 -1.1763394 -1.2509650 -1.3233311 -1.3932932 -1.4607368 -1.5255756 -1.5877492 -1.6472216 -1.7039782 -1.7580243 -1.8093824 -1.8580900 -2.0227133 -1.9623083 -1.8967332 -1.8257158 -1.7490030 -1.6663683 -1.5776194 -1.4826077 -1.3812365 -1.2734712 -1.1593478 -1.0389827 -0.9125804 -0.7804418 -0.6429699 -0.5006751 -0.3541777 -0.2042094 -0.0516117 0.1026675 0.2575795 0.4119833 0.5646553 0.7143020 0.8595738 0.9990805 1.1314878 1.2559602 1.3719177 1.4788675 1.5764038 1.6642067 1.7420400 1.8097481 1.8672528 1.9145489 1.9516999 1.9788333 1.9961358 2.0038482 2.0022602 1.9917059 1.9725581 1.9452238 1.9101394 1.8677654 1.8185827 1.7630872 1.7017863 1.6351943 1.5638287 1.4882065 1.4088405 1.3262365 1.2408898 1.1532828 1.0638824 0.9731379 0.8814788 0.7893137 0.6970283 0.6049851 0.5135220 0.4229522 0.3335639 0.2456202 0.1593595 0.0749964 -0.0072786 -0.0872970 -0.1649123 -0.2399981 -0.3124470 -0.3821695 -0.4490922 -0.5131563 -0.5743162 -0.6325379 -0.6877974 -0.7400789 -0.7893791 -0.8358140 -0.8796051 -0.9209630 -0.9600835 -0.9971492 -1.0323302 -1.0657859 -1.0976652 -1.1281076 -1.1572442 -1.1851983 -1.2120857 -1.2380158 -1.2630915 -1.2874102 -1.3110637 -1.3341388 -1.3567174 -1.3788771
Gm6710 -1.7567938 -1.6516424 -1.5452170 -1.4377402 -1.3294473 -1.2205868 -1.1114202 -1.0022219 -0.8932794 -0.7848927 -0.6773742 -0.5710479 -0.4662497 -0.3633259 -0.2626329 -0.1645363 -0.0694100 0.0223649 0.1104014 0.1943074 0.2736956 0.3483648 0.4183088 0.4835403 0.5440816 0.5999651 0.6512318 0.6979319 0.7401236 0.7778731 0.8112539 0.8403465 0.8652380 0.8860215 0.9027957 0.9156647 0.9247371 0.9301263 0.9319493 0.9303268 0.9253829 0.9172444 0.9060404 0.8919023 0.8749633 0.8553580 0.8332222 0.8086924 0.7819059 0.7530001 0.7221124 0.6893803 0.6549407 0.6189297 0.5814828 0.5427344 0.5028177 0.4618648 0.4200059 0.3773700 0.3340842 0.2902740 0.2460628 0.2015722 0.1569218 0.1122293 0.0676102 0.0231780 -0.0209558 -0.0646818 -0.1078924 -0.1504821 -0.1923473 -0.2333862 -0.2734988 -0.3126211 -0.3507818 -0.3880244 -0.4243914 -0.4599246 -0.4946652 -0.5286535 -0.5619294 -0.5945320 -0.6264998 -0.6578709 -0.6886825 -0.7189717 -0.7487746 -0.7781272 -0.8070648 -0.8356223 -0.8638340 -0.8917340 -0.9193557 -0.9467323 -0.9738965 -1.0008804 -1.0277160 -1.0544348 -1.5311726 -1.4272279 -1.3220387 -1.2157628 -1.1085674 -1.0006284 -0.8921306 -0.7832682 -0.6742442 -0.5652706 -0.4565682 -0.3483667 -0.2409039 -0.1344259 -0.0291868 0.0745520 0.1765220 0.2764484 0.3740501 0.4690407 0.5611290 0.6500201 0.7354154 0.8170140 0.8945134 0.9676105 1.0360322 1.0996882 1.1585630 1.2126489 1.2619461 1.3064622 1.3462122 1.3812180 1.4115084 1.4371189 1.4580909 1.4744722 1.4863163 1.4936822 1.4966342 1.4952415 1.4895781 1.4797226 1.4657576 1.4477700 1.4258500 1.4000914 1.3705914 1.3374498 1.3007693 1.2606551 1.2172144 1.1705564 1.1207922 1.0680343 1.0123965 0.9539935 0.8929411 0.8293554 0.7633533 0.6950516 0.6245672 0.5520170 0.4775174 0.4011841 0.3231325 0.2434768 0.1623302 0.0798050 -0.0039882 -0.0889400 -0.1749428 -0.2618904 -0.3496789 -0.4382059 -0.5273714 -0.6170773 -0.7072278 -0.7977295 -0.8884913 -0.9794232 -1.0704366 -1.1614457 -1.2523671 -1.3431204 -1.4336279 -1.5238147 -1.6136087 -1.7029408 -1.7917445 -1.8799562 -1.9675152 -2.0543634 -2.1404458 -2.2257099 -2.3101058 -2.3935866 -2.4761078 -2.5576274
Tsc22d1 -1.1912274 -1.1743904 -1.1575144 -1.1405758 -1.1235514 -1.1064175 -1.0891506 -1.0717269 -1.0541227 -1.0363141 -1.0182772 -0.9999877 -0.9814216 -0.9625546 -0.9433622 -0.9238200 -0.9039034 -0.8835876 -0.8628477 -0.8416588 -0.8199973 -0.7978720 -0.7753254 -0.7524012 -0.7291436 -0.7055968 -0.6818053 -0.6578140 -0.6336677 -0.6094115 -0.5850910 -0.5607516 -0.5364394 -0.5122003 -0.4880806 -0.4641269 -0.4403859 -0.4169046 -0.3937300 -0.3709097 -0.3484910 -0.3265217 -0.3050497 -0.2841230 -0.2637897 -0.2440983 -0.2250970 -0.2068344 -0.1893591 -0.1727198 -0.1569651 -0.1421438 -0.1283046 -0.1154962 -0.1037674 -0.0931667 -0.0837426 -0.0755436 -0.0686180 -0.0630138 -0.0587790 -0.0559613 -0.0546081 -0.0547666 -0.0564836 -0.0598056 -0.0647787 -0.0714485 -0.0798602 -0.0900586 -0.1020878 -0.1159914 -0.1318123 -0.1495927 -0.1693743 -0.1911666 -0.2148953 -0.2404722 -0.2678087 -0.2968163 -0.3274065 -0.3594909 -0.3929811 -0.4277890 -0.4638266 -0.5010064 -0.5392411 -0.5784439 -0.6185283 -0.6594085 -0.7009990 -0.7432151 -0.7859725 -0.8291876 -0.8727774 -0.9166598 -0.9607532 -1.0049767 -1.0492502 -1.0934944 -1.6971413 -1.5557266 -1.4133499 -1.2702596 -1.1267121 -0.9829714 -0.8393089 -0.6960030 -0.5533390 -0.4116088 -0.2711101 -0.1321468 0.0049722 0.1399330 0.2724171 0.4021021 0.5286620 0.6517679 0.7710880 0.8862889 0.9970352 1.1029910 1.2038196 1.2991845 1.3887500 1.4721816 1.5491911 1.6197630 1.6839887 1.7419665 1.7938008 1.8396018 1.8794851 1.9135712 1.9419852 1.9648567 1.9823190 1.9945090 2.0015672 2.0036367 2.0008637 1.9933969 1.9813871 1.9649872 1.9443519 1.9196373 1.8910012 1.8586022 1.8226002 1.7831556 1.7404294 1.6945834 1.6457791 1.5941786 1.5399437 1.4832359 1.4242166 1.3630465 1.2998858 1.2348939 1.1682294 1.1000499 1.0305118 0.9597704 0.8879797 0.8152924 0.7418597 0.6678311 0.5933546 0.5185767 0.4436419 0.3686932 0.2938715 0.2193160 0.1451642 0.0715514 -0.0013886 -0.0735243 -0.1447256 -0.2148646 -0.2838190 -0.3515571 -0.4181362 -0.4836166 -0.5480576 -0.6115181 -0.6740562 -0.7357292 -0.7965938 -0.8567061 -0.9161213 -0.9748941 -1.0330786 -1.0907282 -1.1478957 -1.2046331 -1.2609921 -1.3170233 -1.3727772 -1.4283034
Maz 2.7686217 2.4656152 2.1720712 1.8885283 1.6154371 1.3531663 1.1020100 0.8621943 0.6338850 0.4171947 0.2121906 0.0189018 -0.1626736 -0.3325608 -0.4908020 -0.6374485 -0.7725550 -0.8961723 -1.0083411 -1.1090857 -1.1984240 -1.2767294 -1.3447032 -1.4029930 -1.4521834 -1.4928021 -1.5253268 -1.5501908 -1.5677878 -1.5784770 -1.5825870 -1.5804202 -1.5722558 -1.5583537 -1.5389573 -1.5142964 -1.4845900 -1.4500487 -1.4108774 -1.3672770 -1.3194471 -1.2675879 -1.2119017 -1.1525954 -1.0898819 -1.0239815 -0.9551242 -0.8835501 -0.8095118 -0.7332747 -0.6551189 -0.5753395 -0.4942479 -0.4121720 -0.3294573 -0.2464667 -0.1635808 -0.0811977 0.0002670 0.0803811 0.1586963 0.2347494 0.3080636 0.3781500 0.4445095 0.5066345 0.5640122 0.6161262 0.6624602 0.7025007 0.7357409 0.7616839 0.7798468 0.7897650 0.7909966 0.7833132 0.7670165 0.7425164 0.7102442 0.6706490 0.6241938 0.5713518 0.5126035 0.4484330 0.3793253 0.3057637 0.2282267 0.1471862 0.0631051 -0.0235643 -0.1123824 -0.2029231 -0.2947754 -0.3875444 -0.4808517 -0.5743363 -0.6676548 -0.7604816 -0.8525089 -0.9434465 -1.1225758 -0.9995456 -0.8742022 -0.7468282 -0.6177323 -0.4872498 -0.3557431 -0.2236020 -0.0912438 0.0408869 0.1723187 0.3025543 0.4310709 0.5573223 0.6807399 0.8007350 0.9167009 1.0280156 1.1340445 1.2341439 1.3276646 1.4139554 1.4923676 1.5622593 1.6230000 1.6739757 1.7146809 1.7451636 1.7657054 1.7766244 1.7782709 1.7710238 1.7552867 1.7314846 1.7000601 1.6614702 1.6161828 1.5646739 1.5074244 1.4449177 1.3776365 1.3060612 1.2306671 1.1519230 1.0702887 0.9862143 0.9001383 0.8124863 0.7236708 0.6340897 0.5441260 0.4541474 0.3645062 0.2755390 0.1875670 0.1008963 0.0158178 -0.0673915 -0.1484685 -0.2271631 -0.3032371 -0.3764635 -0.4466255 -0.5135151 -0.5769322 -0.6366831 -0.6925790 -0.7444352 -0.7920690 -0.8352981 -0.8739394 -0.9078071 -0.9367105 -0.9604526 -0.9788278 -0.9916199 -0.9985997 -0.9995228 -0.9941266 -0.9821282 -0.9632340 -0.9374263 -0.9049666 -0.8661141 -0.8211166 -0.7702137 -0.7136399 -0.6516275 -0.5844097 -0.5122229 -0.4353097 -0.3539207 -0.2683177 -0.1787750 -0.0855823 0.0109540 0.1105089 0.2127370 0.3172711 0.4237211
Nfil3 1.1695706 0.8721069 0.6029021 0.3600569 0.1416306 -0.0543112 -0.2296585 -0.3862279 -0.5257418 -0.6498142 -0.7599415 -0.8574989 -0.9437396 -1.0197966 -1.0866863 -1.1453139 -1.1964788 -1.2408802 -1.2791231 -1.3117231 -1.3391177 -1.3618059 -1.3803300 -1.3951385 -1.4065962 -1.4149985 -1.4205828 -1.4235373 -1.4240081 -1.4221059 -1.4179100 -1.4114730 -1.4028236 -1.3919697 -1.3789009 -1.3635902 -1.3459962 -1.3260651 -1.3037319 -1.2789226 -1.2515557 -1.2215443 -1.1887985 -1.1532272 -1.1147410 -1.0732552 -1.0286929 -0.9809888 -0.9300929 -0.8759752 -0.8186301 -0.7580816 -0.6943885 -0.6276498 -0.5580107 -0.4856675 -0.4108732 -0.3339423 -0.2552555 -0.1752625 -0.0944850 -0.0135175 0.0669733 0.1462506 0.2235122 0.2978973 0.3684951 0.4343571 0.4945108 0.5479763 0.5937852 0.6310010 0.6587417 0.6762030 0.6826818 0.6778321 0.6620663 0.6360242 0.6004496 0.5561676 0.5040635 0.4450615 0.3801051 0.3101382 0.2360894 0.1588570 0.0792976 -0.0017843 -0.0836432 -0.1655988 -0.2470385 -0.3274198 -0.4062693 -0.4831822 -0.5578189 -0.6299021 -0.6992121 -0.7655823 -0.8288940 -0.8890714 -1.0188113 -0.9462506 -0.8683246 -0.7848507 -0.6956799 -0.6007055 -0.4998724 -0.3931859 -0.2807227 -0.1626399 -0.0391861 0.0892899 0.2223297 0.3593574 0.4996741 0.6424528 0.7867371 0.9314417 1.0753570 1.2171561 1.3554068 1.4885862 1.6151005 1.7333078 1.8415449 1.9381578 2.0216584 2.0914054 2.1472019 2.1890223 2.2170026 2.2314292 2.2327251 2.2214350 2.1982091 2.1637866 2.1189786 2.0646513 2.0017104 1.9310851 1.8537141 1.7705325 1.6824601 1.5903907 1.4951838 1.3976571 1.2985804 1.1986717 1.0985935 0.9989515 0.9002937 0.8031107 0.7078366 0.6148516 0.5244837 0.4370125 0.3526721 0.2716552 0.1941164 0.1201768 0.0499279 -0.0165650 -0.0792579 -0.1381254 -0.1931559 -0.2443490 -0.2917115 -0.3352543 -0.3749895 -0.4109269 -0.4430713 -0.4714195 -0.4959574 -0.5166566 -0.5334718 -0.5463370 -0.5551618 -0.5598279 -0.5601838 -0.5560403 -0.5471737 -0.5335237 -0.5151986 -0.4922814 -0.4648266 -0.4328649 -0.3964084 -0.3554545 -0.3099911 -0.2600004 -0.2054639 -0.1463667 -0.0827029 -0.0144799 0.0582753 0.1355114 0.2171467 0.3030630 0.3930996 0.4870474
Zfp706 -1.0158756 -1.0099567 -1.0039506 -0.9977738 -0.9913429 -0.9845739 -0.9773828 -0.9696849 -0.9613955 -0.9524293 -0.9427003 -0.9321224 -0.9206083 -0.9080705 -0.8944203 -0.8795683 -0.8634239 -0.8458954 -0.8268900 -0.8063133 -0.7840729 -0.7601577 -0.7346393 -0.7075932 -0.6790951 -0.6492214 -0.6180489 -0.5856553 -0.5521191 -0.5175198 -0.4819378 -0.4454547 -0.4081535 -0.3701181 -0.3314340 -0.2921881 -0.2524684 -0.2123648 -0.1719682 -0.1313712 -0.0906680 -0.0499540 -0.0093263 0.0311169 0.0712756 0.1110488 0.1503341 0.1890276 0.2270245 0.2642189 0.3005038 0.3357711 0.3699121 0.4028172 0.4343763 0.4644787 0.4930134 0.5198689 0.5449339 0.5680969 0.5892466 0.6082722 0.6250633 0.6395101 0.6515039 0.6609367 0.6677021 0.6716949 0.6728118 0.6709512 0.6660139 0.6579027 0.6465234 0.6317845 0.6135978 0.5919372 0.5669360 0.5387554 0.5075581 0.4735075 0.4367683 0.3975050 0.3558826 0.3120658 0.2662188 0.2185049 0.1690865 0.1181248 0.0657793 0.0122081 -0.0424328 -0.0979897 -0.1543108 -0.2112470 -0.2686517 -0.3263810 -0.3842938 -0.4422521 -0.5001207 -0.5577674 -1.1635858 -1.0148138 -0.8637320 -0.7107504 -0.5563067 -0.4008655 -0.2449168 -0.0889752 0.0664217 0.2207152 0.3733269 0.5236608 0.6711053 0.8150354 0.9548150 1.0897989 1.2193352 1.3427676 1.4594379 1.5686884 1.6698638 1.7623145 1.8453981 1.9184829 1.9809494 2.0321941 2.0717282 2.0996684 2.1163766 2.1222395 2.1176663 2.1030853 2.0789420 2.0456962 2.0038201 1.9537961 1.8961151 1.8312741 1.7597750 1.6821227 1.5988230 1.5103820 1.4173035 1.3200885 1.2192330 1.1152272 1.0085541 0.8996883 0.7890947 0.6772278 0.5645303 0.4514328 0.3383525 0.2256928 0.1138431 0.0031777 -0.1059437 -0.2131767 -0.3181918 -0.4206743 -0.5203242 -0.6168552 -0.7099947 -0.7994825 -0.8850701 -0.9665195 -1.0436021 -1.1160972 -1.1837906 -1.2464727 -1.3039372 -1.3559788 -1.4023914 -1.4429658 -1.4774877 -1.5057351 -1.5274760 -1.5424656 -1.5504438 -1.5511323 -1.5442463 -1.5298134 -1.5081735 -1.4796636 -1.4446076 -1.4033195 -1.3561069 -1.3032743 -1.2451259 -1.1819685 -1.1141139 -1.0418811 -0.9655988 -0.8856069 -0.8022583 -0.7159200 -0.6269750 -0.5358222 -0.4428779 -0.3485759
Hopx -0.6617109 -0.6692763 -0.6767036 -0.6839061 -0.6907995 -0.6973015 -0.7033311 -0.7088091 -0.7136570 -0.7177971 -0.7211514 -0.7236417 -0.7251886 -0.7257108 -0.7251245 -0.7233424 -0.7202731 -0.7158197 -0.7098790 -0.7023400 -0.6930866 -0.6820752 -0.6693384 -0.6549084 -0.6388145 -0.6210837 -0.6017417 -0.5808138 -0.5583259 -0.5343052 -0.5087811 -0.4817859 -0.4533558 -0.4235318 -0.3923600 -0.3598930 -0.3261904 -0.2913194 -0.2553555 -0.2183835 -0.1804974 -0.1418017 -0.1024111 -0.0624516 -0.0220600 0.0186155 0.0594154 0.1001689 0.1406941 0.1807988 0.2202801 0.2589261 0.2965160 0.3328211 0.3676063 0.4006309 0.4316504 0.4604175 0.4866845 0.5102046 0.5307339 0.5480336 0.5618723 0.5720278 0.5782900 0.5804631 0.5783681 0.5718454 0.5607571 0.5449903 0.5244587 0.4991058 0.4689072 0.4338723 0.3940473 0.3496053 0.3009847 0.2486738 0.1931638 0.1349438 0.0744959 0.0122905 -0.0512180 -0.1155947 -0.1804278 -0.2453312 -0.3099466 -0.3739459 -0.4370317 -0.4989382 -0.5594317 -0.6183100 -0.6754019 -0.7305660 -0.7836895 -0.8346864 -0.8834955 -0.9300787 -0.9744185 -1.0165159 -1.3211512 -1.2631204 -1.1973114 -1.1229941 -1.0394596 -0.9460482 -0.8421809 -0.7273956 -0.6013857 -0.4640379 -0.3154704 -0.1560648 0.0135073 0.1922675 0.3789237 0.5718759 0.7692326 0.9688391 1.1683146 1.3650969 1.5564922 1.7397271 1.9120023 2.0705439 2.2126538 2.3357571 2.4376429 2.5175196 2.5753443 2.6113661 2.6260942 2.6202673 2.5948238 2.5508748 2.4896774 2.4126096 2.3211462 2.2168349 2.1012741 1.9760902 1.8429157 1.7033683 1.5590301 1.4114286 1.2620182 1.1121645 0.9631297 0.8160612 0.6719829 0.5317890 0.3962417 0.2659709 0.1414782 0.0231422 -0.0887734 -0.1941097 -0.2928012 -0.3848643 -0.4703844 -0.5495038 -0.6224097 -0.6893228 -0.7504869 -0.8061596 -0.8566040 -0.9020814 -0.9428446 -0.9791329 -1.0111673 -1.0391461 -1.0632416 -1.0835965 -1.1003204 -1.1134864 -1.1231271 -1.1292301 -1.1317323 -1.1305132 -1.1253866 -1.1160897 -1.1022783 -1.0837007 -1.0602103 -1.0315956 -0.9975771 -0.9578109 -0.9118936 -0.8593662 -0.7997198 -0.7324025 -0.6568286 -0.5723895 -0.4784684 -0.3744571 -0.2597771 -0.1339031 0.0036104 0.1530996 0.3147618 0.4886249
Zfp235 0.0334436 -0.0124711 -0.0573086 -0.1009348 -0.1432278 -0.1840765 -0.2233802 -0.2610471 -0.2969938 -0.3311438 -0.3634267 -0.3937771 -0.4221332 -0.4484363 -0.4726287 -0.4946537 -0.5144532 -0.5319676 -0.5471334 -0.5598830 -0.5701470 -0.5779540 -0.5834279 -0.5866862 -0.5878364 -0.5869776 -0.5842017 -0.5795942 -0.5732354 -0.5652017 -0.5555656 -0.5443974 -0.5317657 -0.5177377 -0.5023807 -0.4857619 -0.4679499 -0.4490143 -0.4290273 -0.4080636 -0.3862009 -0.3635206 -0.3401083 -0.3160540 -0.2914524 -0.2664035 -0.2410126 -0.2153908 -0.1896548 -0.1639273 -0.1383367 -0.1130175 -0.0881097 -0.0637588 -0.0401155 -0.0173352 0.0044223 0.0249937 0.0442130 0.0619117 0.0779206 0.0920700 0.1041915 0.1141189 0.1216896 0.1267460 0.1291371 0.1287197 0.1253603 0.1189367 0.1093394 0.0964733 0.0802592 0.0606355 0.0375593 0.0110747 -0.0185802 -0.0511311 -0.0863004 -0.1238100 -0.1633838 -0.2047499 -0.2476425 -0.2918037 -0.3369854 -0.3829500 -0.4294718 -0.4763377 -0.5233482 -0.5703173 -0.6170728 -0.6634568 -0.7093253 -0.7545479 -0.7990078 -0.8426008 -0.8852355 -0.9268321 -0.9673222 -1.0066475 -1.3868231 -1.3062221 -1.2181854 -1.1222964 -1.0181740 -0.9054872 -0.7839722 -0.6534508 -0.5138508 -0.3652267 -0.2077820 -0.0418904 0.1318831 0.3127635 0.4997491 0.6915998 0.8868295 1.0837053 1.2802535 1.4742739 1.6633626 1.8449445 2.0163145 2.1746875 2.3172577 2.4412638 2.5442606 2.6252298 2.6839406 2.7205059 2.7353579 2.7292196 2.7030707 2.6581106 2.5957196 2.5174196 2.4248350 2.3196552 2.2035995 2.0783852 1.9456982 1.8071685 1.6643489 1.5186983 1.3715684 1.2241945 1.0776898 0.9330430 0.7911183 0.6526585 0.5182895 0.3885269 0.2637837 0.1443786 0.0305454 -0.0775576 -0.1798387 -0.2762627 -0.3668425 -0.4516308 -0.5307113 -0.6041923 -0.6721990 -0.7348680 -0.7923409 -0.8447599 -0.8922624 -0.9349772 -0.9730202 -1.0064906 -1.0354670 -1.0600043 -1.0801290 -1.0958357 -1.1070820 -1.1137840 -1.1158094 -1.1129712 -1.1050187 -1.0916272 -1.0723968 -1.0470813 -1.0156026 -0.9778275 -0.9335638 -0.8825647 -0.8245340 -0.7591309 -0.6859745 -0.6046500 -0.5147144 -0.4157045 -0.3071448 -0.1885588 -0.0594801 0.0805328 0.2318806 0.3949048 0.5698668 0.7569254
Mef2c -0.7205846 -0.6966580 -0.6719571 -0.6464687 -0.6201804 -0.5930804 -0.5651581 -0.5364036 -0.5068084 -0.4763649 -0.4450671 -0.4129102 -0.3798911 -0.3460083 -0.3112619 -0.2756542 -0.2391892 -0.2018733 -0.1637148 -0.1247247 -0.0849166 -0.0443161 -0.0029619 0.0391016 0.0818250 0.1251533 0.1690262 0.2133775 0.2581357 0.3032230 0.3485561 0.3940460 0.4395977 0.4851107 0.5304789 0.5755908 0.6203298 0.6645744 0.7081985 0.7510716 0.7930596 0.8340249 0.8738270 0.9123231 0.9493685 0.9848176 1.0185243 1.0503425 1.0801276 1.1077365 1.1330288 1.1558677 1.1761207 1.1936604 1.2083659 1.2201230 1.2288256 1.2343763 1.2366877 1.2356826 1.2312955 1.2234728 1.2121741 1.1973724 1.1790551 1.1572240 1.1318967 1.1031059 1.0709007 1.0353458 0.9965225 0.9545280 0.9094753 0.8614932 0.8107257 0.7573807 0.7018044 0.6443583 0.5853937 0.5252494 0.4642496 0.4027019 0.3408960 0.2791028 0.2175732 0.1565378 0.0962066 0.0367689 -0.0216062 -0.0787701 -0.1345931 -0.1889645 -0.2417914 -0.2929976 -0.3425230 -0.3903219 -0.4363624 -0.4806249 -0.5231010 -0.5637925 -0.8815130 -0.8139431 -0.7385507 -0.6548005 -0.5622205 -0.4604327 -0.3491878 -0.2284024 -0.0981990 0.0410544 0.1887060 0.3437871 0.5049854 0.6706285 0.8386800 1.0067504 1.1721245 1.3318065 1.4825825 1.6211003 1.7439640 1.8478420 1.9295831 1.9863397 2.0156911 2.0157632 1.9856028 1.9265574 1.8411843 1.7325209 1.6039475 1.4590504 1.3014910 1.1348845 0.9626928 0.7881350 0.6141163 0.4431775 0.2774653 0.1187210 -0.0317134 -0.1728746 -0.3041465 -0.4252203 -0.5360505 -0.6368090 -0.7278398 -0.8096166 -0.8827045 -0.9477260 -1.0053335 -1.0561855 -1.1009294 -1.1401871 -1.1745466 -1.2045546 -1.2307141 -1.2534824 -1.2732716 -1.2904502 -1.3053452 -1.3182451 -1.3294029 -1.3390390 -1.3473447 -1.3544851 -1.3606017 -1.3658148 -1.3702262 -1.3739203 -1.3769666 -1.3794202 -1.3813232 -1.3827050 -1.3835826 -1.3839602 -1.3838284 -1.3831626 -1.3819211 -1.3800413 -1.3774363 -1.3740165 -1.3696913 -1.3643419 -1.3578171 -1.3499286 -1.3404449 -1.3290844 -1.3155071 -1.2993045 -1.2799891 -1.2569820 -1.2295997 -1.1970408 -1.1583723 -1.1125175 -1.0582461 -0.9941688 -0.9187387 -0.8302618
Rxrg 0.3279448 0.3208844 0.3139306 0.3071670 0.3006763 0.2945401 0.2888395 0.2836548 0.2790657 0.2751521 0.2719934 0.2696694 0.2682606 0.2678481 0.2685144 0.2703435 0.2734215 0.2778370 0.2836815 0.2910500 0.3000380 0.3106533 0.3228145 0.3364368 0.3514359 0.3677271 0.3852247 0.4038418 0.4234892 0.4440755 0.4655067 0.4876852 0.5105101 0.5338767 0.5576763 0.5817958 0.6061177 0.6305202 0.6548770 0.6790570 0.7029252 0.7263420 0.7491638 0.7712435 0.7924305 0.8125711 0.8315093 0.8490872 0.8651455 0.8795246 0.8920648 0.9026076 0.9109966 0.9170782 0.9207027 0.9217257 0.9200089 0.9154214 0.9078408 0.8971548 0.8832622 0.8660741 0.8455155 0.8215265 0.7940634 0.7630998 0.7286284 0.6906614 0.6492317 0.6043938 0.5562248 0.5048242 0.4503150 0.3928436 0.3325796 0.2697808 0.2048898 0.1383674 0.0706585 0.0021879 -0.0666420 -0.1354541 -0.2038987 -0.2716548 -0.3384313 -0.4039680 -0.4680350 -0.5304330 -0.5909925 -0.6495729 -0.7060608 -0.7603693 -0.8124353 -0.8622186 -0.9096990 -0.9548751 -0.9977618 -1.0383883 -1.0767962 -1.1130379 -1.3845221 -1.3368761 -1.2818962 -1.2187209 -1.1464738 -1.0642926 -0.9713645 -0.8669699 -0.7505322 -0.6216727 -0.4802688 -0.3265100 -0.1609502 0.0154495 0.2012910 0.3947263 0.5934636 0.7947935 0.9956351 1.1925994 1.3820683 1.5602844 1.7234481 1.8678196 1.9898210 2.0861389 2.1540807 2.1929878 2.2033415 2.1861420 2.1428438 2.0752884 1.9856371 1.8763029 1.7498837 1.6090952 1.4567061 1.2954759 1.1280958 0.9571347 0.7849914 0.6138544 0.4456703 0.2821219 0.1246159 -0.0257193 -0.1680271 -0.3017079 -0.4263982 -0.5419445 -0.6483744 -0.7458665 -0.8347205 -0.9153282 -0.9881473 -1.0536783 -1.1124444 -1.1649750 -1.2117919 -1.2533996 -1.2902774 -1.3228741 -1.3516046 -1.3768481 -1.3989474 -1.4182091 -1.4349042 -1.4492693 -1.4615079 -1.4717912 -1.4802592 -1.4870214 -1.4921568 -1.4957129 -1.4977051 -1.4981131 -1.4968779 -1.4938954 -1.4890092 -1.4819987 -1.4725692 -1.4604255 -1.4452789 -1.4267601 -1.4044078 -1.3776573 -1.3458287 -1.3081120 -1.2635523 -1.2110335 -1.1492635 -1.0767613 -0.9918484 -0.8926470 -0.7770889 -0.6429379 -0.4878296 -0.3093335 -0.1050380 0.1273385
Id3 -0.8947749 -0.8435085 -0.7917539 -0.7395898 -0.6870978 -0.6343625 -0.5814713 -0.5285139 -0.4755826 -0.4227719 -0.3701784 -0.3179007 -0.2660388 -0.2146948 -0.1639715 -0.1139736 -0.0648063 -0.0165759 0.0306106 0.0766457 0.1214233 0.1648787 0.2069897 0.2477376 0.2871053 0.3250770 0.3616386 0.3967769 0.4304802 0.4627382 0.4935415 0.5228817 0.5507518 0.5771456 0.6020579 0.6254844 0.6474217 0.6678672 0.6868192 0.7042768 0.7202396 0.7347083 0.7476839 0.7591684 0.7691642 0.7776744 0.7847028 0.7902537 0.7943320 0.7969431 0.7980930 0.7977883 0.7960359 0.7928435 0.7882192 0.7821714 0.7747094 0.7658427 0.7555814 0.7439361 0.7309178 0.7165381 0.7008092 0.6837435 0.6653542 0.6456549 0.6246597 0.6023833 0.5788409 0.5540481 0.5280214 0.5007776 0.4723342 0.4427091 0.4119211 0.3799997 0.3470028 0.3129927 0.2780318 0.2421822 0.2055063 0.1680659 0.1299227 0.0911382 0.0517733 0.0118887 -0.0284555 -0.0691998 -0.1102852 -0.1516534 -0.1932469 -0.2350088 -0.2768833 -0.3188154 -0.3607510 -0.4026372 -0.4444219 -0.4860543 -0.5274849 -0.5686651 -1.1945080 -1.0668817 -0.9355052 -0.8008625 -0.6634846 -0.5239437 -0.3828472 -0.2408320 -0.0985582 0.0432965 0.1840421 0.3229815 0.4594145 0.5926419 0.7219683 0.8467051 0.9661727 1.0797018 1.1866351 1.2863282 1.3781503 1.4614853 1.5357317 1.6003037 1.6546316 1.6981625 1.7304531 1.7516344 1.7620658 1.7621268 1.7522139 1.7327386 1.7041253 1.6668106 1.6212414 1.5678740 1.5071733 1.4396121 1.3656695 1.2858312 1.2005878 1.1104342 1.0158688 0.9173921 0.8155059 0.7107116 0.6035093 0.4943953 0.3838613 0.2723917 0.1604621 0.0485367 -0.0629336 -0.1735136 -0.2827862 -0.3903543 -0.4958430 -0.5989014 -0.6992041 -0.7964525 -0.8903756 -0.9807304 -1.0673017 -1.1499018 -1.2283690 -1.3025667 -1.3723809 -1.4377177 -1.4985010 -1.5546688 -1.6061701 -1.6529609 -1.6950008 -1.7322483 -1.7646573 -1.7921723 -1.8147240 -1.8322253 -1.8445657 -1.8516076 -1.8531909 -1.8493611 -1.8403670 -1.8264362 -1.8077707 -1.7845529 -1.7569514 -1.7251261 -1.6892333 -1.6494306 -1.6058811 -1.5587573 -1.5082451 -1.4545469 -1.3978842 -1.3385005 -1.2766626 -1.2126624 -1.1468176 -1.0794719
Zfp931 -0.3954399 -0.3373900 -0.2784260 -0.2186595 -0.1582108 -0.0972087 -0.0357910 0.0258957 0.0876957 0.1494446 0.2109689 0.2720866 0.3326073 0.3923322 0.4510552 0.5085627 0.5646344 0.6190442 0.6715606 0.7219475 0.7699698 0.8154893 0.8584712 0.8988913 0.9367317 0.9719807 1.0046323 1.0346866 1.0621492 1.0870311 1.1093484 1.1291226 1.1463797 1.1611504 1.1734696 1.1833765 1.1909142 1.1961293 1.1990719 1.1997951 1.1983551 1.1948108 1.1892233 1.1816562 1.1721749 1.1608466 1.1477401 1.1329253 1.1164736 1.0984570 1.0789482 1.0580206 1.0357478 1.0122036 0.9874618 0.9615962 0.9346800 0.9067860 0.8779867 0.8483536 0.8179573 0.7868679 0.7551540 0.7228832 0.6901221 0.6569357 0.6233879 0.5895410 0.5554561 0.5211925 0.4868081 0.4523592 0.4179007 0.3834856 0.3491655 0.3149802 0.2809417 0.2470571 0.2133334 0.1797773 0.1463954 0.1131939 0.0801789 0.0473563 0.0147319 -0.0176889 -0.0499009 -0.0818989 -0.1136781 -0.1452338 -0.1765614 -0.2076567 -0.2385157 -0.2691342 -0.2995087 -0.3296355 -0.3595112 -0.3891326 -0.4184967 -0.4476005 -0.8840425 -0.7899371 -0.6928822 -0.5931560 -0.4910829 -0.3870361 -0.2814392 -0.1747675 -0.0675488 0.0396372 0.1461594 0.2513378 0.3544457 0.4547140 0.5513360 0.6434735 0.7302633 0.8108260 0.8842744 0.9497241 1.0063037 1.0531672 1.0895058 1.1145607 1.1276370 1.1281164 1.1155888 1.0904534 1.0534610 1.0054329 0.9472456 0.8798155 0.8040857 0.7210123 0.6315525 0.5366530 0.4372403 0.3342114 0.2284267 0.1207031 0.0118089 -0.0975401 -0.2066835 -0.3150177 -0.4219974 -0.5271345 -0.6299976 -0.7302101 -0.8274478 -0.9214359 -1.0119459 -1.0987917 -1.1818262 -1.2609366 -1.3360411 -1.4070844 -1.4740339 -1.5368757 -1.5956108 -1.6502513 -1.7008172 -1.7473328 -1.7898232 -1.8283119 -1.8628166 -1.8933474 -1.9199026 -1.9424665 -1.9610060 -1.9754667 -1.9857700 -1.9918088 -1.9934429 -1.9904944 -1.9827415 -1.9699121 -1.9516760 -1.9276358 -1.8973162 -1.8601508 -1.8154797 -1.7627990 -1.7017891 -1.6320759 -1.5532245 -1.4647440 -1.3660921 -1.2566816 -1.1358869 -1.0030525 -0.8575029 -0.6985540 -0.5255271 -0.3377647 -0.1346485 0.0843800 0.3197972 0.5719729 0.8411447 1.1273911
Foxn2 0.2349836 0.2656179 0.2964265 0.3273679 0.3583999 0.3894789 0.4205600 0.4515973 0.4825437 0.5133510 0.5439695 0.5743488 0.6044372 0.6341819 0.6635290 0.6924238 0.7208103 0.7486321 0.7758314 0.8023501 0.8281295 0.8531240 0.8773012 0.9006290 0.9230758 0.9446099 0.9651997 0.9848139 1.0034217 1.0209922 1.0374951 1.0529005 1.0671790 1.0803014 1.0922396 1.1029656 1.1124523 1.1206735 1.1276034 1.1332173 1.1374912 1.1404022 1.1419284 1.1420487 1.1407434 1.1379937 1.1337822 1.1280927 1.1209101 1.1122210 1.1020130 1.0902756 1.0769993 1.0621766 1.0458012 1.0278686 1.0083760 0.9873221 0.9647074 0.9405343 0.9148068 0.8875307 0.8587137 0.8283653 0.7964970 0.7631219 0.7282552 0.6919140 0.6541171 0.6148853 0.5742414 0.5322097 0.4888169 0.4440910 0.3980621 0.3507830 0.3023622 0.2529155 0.2025565 0.1513962 0.0995426 0.0471011 -0.0058263 -0.0591406 -0.1127465 -0.1665518 -0.2204680 -0.2744102 -0.3282972 -0.3820511 -0.4355981 -0.4888678 -0.5417935 -0.5943119 -0.6463636 -0.6978923 -0.7488454 -0.7991733 -0.8488301 -0.8977726 -1.2605748 -1.1608666 -1.0578451 -0.9517361 -0.8428092 -0.7313803 -0.6178145 -0.5025277 -0.3859890 -0.2687214 -0.1513018 -0.0343616 0.0814157 0.1952959 0.3064977 0.4141973 0.5175333 0.6156141 0.7075252 0.7923387 0.8691231 0.9369546 0.9949294 1.0421766 1.0778716 1.1012507 1.1117383 1.1095337 1.0951831 1.0693133 1.0326181 0.9858460 0.9297874 0.8652625 0.7931102 0.7141769 0.6293071 0.5393344 0.4450734 0.3473130 0.2468104 0.1442865 0.0404221 -0.0641455 -0.1688237 -0.2730663 -0.3763736 -0.4782924 -0.5784145 -0.6763761 -0.7718553 -0.8645699 -0.9542754 -1.0407616 -1.1238501 -1.2033910 -1.2792601 -1.3513555 -1.4195945 -1.4839106 -1.5442504 -1.6005705 -1.6528346 -1.7010108 -1.7450683 -1.7849748 -1.8206938 -1.8521816 -1.8793842 -1.9022348 -1.9206501 -1.9345273 -1.9437404 -1.9481363 -1.9475304 -1.9417015 -1.9303867 -1.9132747 -1.8899987 -1.8601278 -1.8231697 -1.7788311 -1.7270366 -1.6676798 -1.6006168 -1.5256718 -1.4426423 -1.3513047 -1.2514198 -1.1427395 -1.0250132 -0.8979952 -0.7614529 -0.6151757 -0.4589844 -0.2927419 -0.1163642 0.0701672 0.2667930 0.4733629
Id2 -0.4809608 -0.4241324 -0.3668450 -0.3091999 -0.2513024 -0.1932607 -0.1351865 -0.0771944 -0.0194018 0.0380711 0.0951017 0.1515652 0.2073344 0.2622808 0.3162738 0.3691816 0.4208711 0.4712084 0.5200585 0.5672861 0.6127580 0.6563998 0.6981975 0.7381419 0.7762260 0.8124443 0.8467934 0.8792714 0.9098783 0.9386154 0.9654854 0.9904927 1.0136427 1.0349423 1.0543994 1.0720232 1.0878238 1.1018125 1.1140015 1.1244040 1.1330340 1.1399063 1.1450368 1.1484420 1.1501391 1.1501462 1.1484819 1.1451656 1.1402173 1.1336578 1.1255082 1.1157905 1.1045270 1.0917408 1.0774553 1.0616946 1.0444832 1.0258463 1.0058093 0.9843983 0.9616397 0.9375605 0.9121881 0.8855503 0.8576754 0.8285919 0.7983291 0.7669164 0.7343836 0.7007611 0.6660794 0.6303696 0.5936631 0.5559915 0.5173870 0.4778878 0.4375487 0.3964266 0.3545785 0.3120609 0.2689303 0.2252425 0.1810531 0.1364173 0.0913896 0.0460240 0.0003740 -0.0455079 -0.0915695 -0.1377597 -0.1840281 -0.2303252 -0.2766025 -0.3228124 -0.3689083 -0.4148447 -0.4605772 -0.5060627 -0.5512590 -0.5961254 -0.9890735 -0.8859668 -0.7808000 -0.6739335 -0.5657556 -0.4566804 -0.3471459 -0.2376112 -0.1285546 -0.0204705 0.0861330 0.1907366 0.2928124 0.3918265 0.4872410 0.5785165 0.6651141 0.7464971 0.8221335 0.8914968 0.9540688 1.0093402 1.0568132 1.0960025 1.1264374 1.1476639 1.1593269 1.1615787 1.1547746 1.1392902 1.1155180 1.0838656 1.0447540 0.9986151 0.9458910 0.8870315 0.8224935 0.7527390 0.6782334 0.5994450 0.5168423 0.4308933 0.3420635 0.2508143 0.1576013 0.0628724 -0.0329336 -0.1293891 -0.2260797 -0.3226053 -0.4185824 -0.5136451 -0.6074470 -0.6996619 -0.7899853 -0.8781348 -0.9638506 -1.0468960 -1.1270567 -1.2041410 -1.2779786 -1.3484197 -1.4153335 -1.4786067 -1.5381416 -1.5938539 -1.6456704 -1.6935265 -1.7373635 -1.7771261 -1.8127589 -1.8442041 -1.8713979 -1.8942674 -1.9127275 -1.9266772 -1.9359964 -1.9405417 -1.9401429 -1.9345986 -1.9236824 -1.9073605 -1.8857966 -1.8591404 -1.8275230 -1.7910627 -1.7498703 -1.7040541 -1.6537246 -1.5989992 -1.5400066 -1.4768906 -1.4098139 -1.3389614 -1.2645429 -1.1867960 -1.1059875 -1.0224151 -0.9364081 -0.8483278
heatmap_matrix_ori_q_value_5_10_minus_5 <- left_join(select(transcription_factors_table_q_value_5_10_minus_5, gene, pval, qval, num_cells_expressed), heatmap_matrix_ori_q_value_5_10_minus_5)
write.table(heatmap_matrix_ori_q_value_5_10_minus_5, file = file.path(tables_directory, "5.1-significant_transcription_factors_beam_analysis_qval_5_10_minus_5_plot_genes_branched_heatmap_matrix_ori.txt"), sep="\t", quote=FALSE, row.names=FALSE)

2.2 q value < 0.01 (plot_genes_branched_heatmap)

significant_genes_q_value_0.01 <- filter(beam_results, qval < 0.01) %>% .$gene 
cat("Number of significant genes: ", length(significant_genes_q_value_0.01))
## Number of significant genes:  6623
significant_transcription_factors_q_value_0.01 <- as.character(significant_genes_q_value_0.01[significant_genes_q_value_0.01 %in% transcription_factors$Symbol])
cat("Number of significant transcription factors:", length(significant_transcription_factors_q_value_0.01))
## Number of significant transcription factors: 375
plot_genes_branched_heatmap(monocle[significant_transcription_factors_q_value_0.01,], branch_labels=c("Ependymal cells", "Astrocytes"), cluster_rows=TRUE, num_clusters=6, show_rownames = TRUE)

## <simpleError in checkwz(wz, M = M, trace = trace, wzepsilon = control$wzepsilon): NAs found in the working weights variable 'wz'>
plot_genes_branched_heatmap_output_q_value_0.01 <- plot_genes_branched_heatmap(monocle[significant_transcription_factors_q_value_0.01,], branch_labels=c("Ependymal cells", "Astrocytes"), cluster_rows=TRUE, num_clusters=1, return_heatmap=TRUE, show_rownames = TRUE)

## <simpleError in checkwz(wz, M = M, trace = trace, wzepsilon = control$wzepsilon): NAs found in the working weights variable 'wz'>
# The RMarkdown PDF has issues, hence this custom function to save the PDF file.
save_pheatmap_pdf(plot_genes_branched_heatmap_output_q_value_0.01[["ph_res"]], file.path("figures", "5.1-hindbrain_astro_ependymal_joint_pons_clusters_20_13_15_3_6_11_beam_analysis", "beam_plots_transcription_factors_only_q_value_0.01_heatmap_custom.pdf"), width=16, height=36)
## pdf 
##   2
heatmap_matrix_ori_q_value_0.01 <- plot_genes_branched_heatmap_output_q_value_0.01[["heatmap_matrix_ori"]]
ph_res_q_value_0.01 <- plot_genes_branched_heatmap_output_q_value_0.01[["ph_res"]]
pheatmap_ordering_q_value_0.01 <- rownames(heatmap_matrix_ori_q_value_0.01[ph_res_q_value_0.01$tree_row[["order"]],])

transcription_factors_table_q_value_0.01 <- filter(beam_results, gene %in% significant_transcription_factors_q_value_0.01)
# Put genes from the transcription factor table in the same order
transcription_factors_table_q_value_0.01 <- transcription_factors_table_q_value_0.01 %>% arrange(match(gene, pheatmap_ordering_q_value_0.01))

write.table(transcription_factors_table_q_value_0.01, file.path(tables_directory, "5.1-significant_transcription_factors_beam_analysis_qval_0.01_plot_genes_branched_heatmap.txt"), sep="\t", quote=FALSE, row.names=FALSE)

heatmap_matrix_ori_q_value_0.01 <- plot_genes_branched_heatmap_output_q_value_0.01[["heatmap_matrix_ori"]]
heatmap_matrix_ori_q_value_0.01 <- as.data.frame(heatmap_matrix_ori_q_value_0.01) %>% rownames_to_column("gene")
heatmap_matrix_ori_q_value_0.01 <- heatmap_matrix_ori_q_value_0.01 %>% arrange(match(gene, pheatmap_ordering_q_value_0.01))
heatmap_matrix_ori_q_value_0.01 %>% head(20) %>% kable() %>% kable_styling() %>% scroll_box(height="200px", width="600px")
gene 100 99 98 97 96 95 94 93 92 91 90 89 88 87 86 85 84 83 82 81 80 79 78 77 76 75 74 73 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
Tbx1 3.0000000 3.0000000 3.0000000 3.0000000 2.3519464 1.6284311 1.1105744 0.7393728 0.4725912 0.2801544 0.1407162 0.0391522 -0.0352491 -0.0900791 -0.1307262 -0.1610228 -0.1837013 -0.2007135 -0.2134546 -0.2229194 -0.2298139 -0.2346918 -0.2379866 -0.2399901 -0.2408918 -0.2408057 -0.2397882 -0.2378486 -0.2349552 -0.2310389 -0.2259939 -0.2196768 -0.2119051 -0.2024546 -0.1910569 -0.1773973 -0.1611139 -0.1417988 -0.1190030 -0.0922454 -0.0610289 -0.0248640 0.0166972 0.0640173 0.1173173 0.1766105 0.2416286 0.3117451 0.3859030 0.4625585 0.5396522 0.6146217 0.6844681 0.7458855 0.7954566 0.8299061 0.8463958 0.8428307 0.8181380 0.7724764 0.7073347 0.6254908 0.5308207 0.4279706 0.3219303 0.2175661 0.1191799 0.0301586 -0.0472379 -0.1119312 -0.1639283 -0.2041105 -0.2339567 -0.2552550 -0.2698481 -0.2794334 -0.2854557 -0.2890822 -0.2911803 -0.2923493 -0.2929779 -0.2933046 -0.2934692 -0.2935496 -0.2935878 -0.2936055 -0.2936135 -0.2936171 -0.2936186 -0.2936192 -0.2936195 -0.2936196 -0.2936197 -0.2936197 -0.2936197 -0.2936197 -0.2936197 -0.2936197 -0.2936197 -0.2936197 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485 -0.2930485
Nr1i2 3.0000000 3.0000000 2.0593607 0.6050059 0.1162459 -0.0382912 -0.0865505 -0.1017175 -0.1065530 -0.1081240 -0.1086457 -0.1088234 -0.1088857 -0.1089082 -0.1089166 -0.1089198 -0.1089211 -0.1089217 -0.1089219 -0.1089220 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089221 -0.1089220 -0.1089220 -0.1089219 -0.1089219 -0.1089217 -0.1089215 -0.1089212 -0.1089208 -0.1089201 -0.1089191 -0.1089177 -0.1089155 -0.1089124 -0.1089079 -0.1089017 -0.1088931 -0.1088816 -0.1088664 -0.1088469 -0.1088227 -0.1087937 -0.1087601 -0.1087229 -0.1086839 -0.1086454 -0.1086104 -0.1085824 -0.1085640 -0.1085568 -0.1085609 -0.1085755 -0.1085988 -0.1086287 -0.1086626 -0.1086981 -0.1087332 -0.1087662 -0.1087960 -0.1088221 -0.1088441 -0.1088623 -0.1088769 -0.1088884 -0.1088973 -0.1089041 -0.1089091 -0.1089128 -0.1089155 -0.1089174 -0.1089188 -0.1089198 -0.1089205 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954 -0.1088954
Grhl3 3.0000000 3.0000000 3.0000000 1.5780227 0.7258175 0.2880315 0.0636731 -0.0515956 -0.1111582 -0.1421859 -0.1585110 -0.1672006 -0.1718867 -0.1744507 -0.1758757 -0.1766812 -0.1771447 -0.1774166 -0.1775792 -0.1776784 -0.1777402 -0.1777796 -0.1778054 -0.1778226 -0.1778344 -0.1778426 -0.1778485 -0.1778526 -0.1778557 -0.1778579 -0.1778595 -0.1778607 -0.1778614 -0.1778619 -0.1778622 -0.1778622 -0.1778619 -0.1778615 -0.1778608 -0.1778598 -0.1778585 -0.1778568 -0.1778547 -0.1778520 -0.1778485 -0.1778442 -0.1778386 -0.1778316 -0.1778227 -0.1778112 -0.1777965 -0.1777775 -0.1777530 -0.1777212 -0.1776799 -0.1776262 -0.1775563 -0.1774652 -0.1773464 -0.1771917 -0.1769904 -0.1767292 -0.1763909 -0.1759545 -0.1753939 -0.1746775 -0.1737673 -0.1726189 -0.1711812 -0.1693966 -0.1672031 -0.1645355 -0.1613298 -0.1575274 -0.1530815 -0.1479568 -0.1421127 -0.1355129 -0.1281285 -0.1199385 -0.1109303 -0.1010988 -0.0904464 -0.0789813 -0.0667165 -0.0536677 -0.0398516 -0.0252832 -0.0099741 0.0060707 0.0228549 0.0403935 0.0587158 0.0778677 0.0979145 0.1189443 0.1410709 0.1644375 0.1892209 0.2156364 0.2829469 0.2339537 0.1902312 0.1512822 0.1166405 0.0858722 0.0585768 0.0343874 0.0129692 -0.0059813 -0.0227377 -0.0375461 -0.0506267 -0.0621758 -0.0723679 -0.0813579 -0.0892822 -0.0962615 -0.1024015 -0.1077950 -0.1125227 -0.1166551 -0.1202531 -0.1233689 -0.1260470 -0.1283251 -0.1302379 -0.1318351 -0.1331662 -0.1342728 -0.1351912 -0.1359528 -0.1365860 -0.1371163 -0.1375674 -0.1379617 -0.1383204 -0.1386636 -0.1390111 -0.1393818 -0.1397938 -0.1402643 -0.1408094 -0.1414439 -0.1421803 -0.1430295 -0.1439993 -0.1450948 -0.1463176 -0.1476654 -0.1491326 -0.1507091 -0.1523814 -0.1541324 -0.1559419 -0.1577872 -0.1596440 -0.1614873 -0.1632922 -0.1650351 -0.1666944 -0.1682514 -0.1696910 -0.1710022 -0.1721783 -0.1732167 -0.1741189 -0.1748902 -0.1755384 -0.1760740 -0.1765088 -0.1768556 -0.1771271 -0.1773357 -0.1774929 -0.1776091 -0.1776934 -0.1777531 -0.1777947 -0.1778229 -0.1778418 -0.1778540 -0.1778618 -0.1778666 -0.1778695 -0.1778713 -0.1778723 -0.1778729 -0.1778732 -0.1778734 -0.1778735 -0.1778736 -0.1778736 -0.1778736 -0.1778736 -0.1778736 -0.1778736 -0.1778736 -0.1778736 -0.1778736
Creb3l3 3.0000000 3.0000000 3.0000000 2.5947689 1.5658591 0.9250147 0.5262497 0.2777838 0.1224806 0.0249606 -0.0366349 -0.0758110 -0.1009262 -0.1171700 -0.1277776 -0.1347767 -0.1394458 -0.1425965 -0.1447478 -0.1462343 -0.1472738 -0.1480110 -0.1485425 -0.1489316 -0.1492205 -0.1494377 -0.1496027 -0.1497293 -0.1498270 -0.1499026 -0.1499612 -0.1500063 -0.1500405 -0.1500657 -0.1500834 -0.1500945 -0.1500998 -0.1500998 -0.1500948 -0.1500848 -0.1500700 -0.1500502 -0.1500251 -0.1499946 -0.1499582 -0.1499155 -0.1498658 -0.1498086 -0.1497432 -0.1496689 -0.1495848 -0.1494903 -0.1493845 -0.1492668 -0.1491366 -0.1489934 -0.1488371 -0.1486677 -0.1484856 -0.1482918 -0.1480878 -0.1478756 -0.1476579 -0.1474383 -0.1472209 -0.1470105 -0.1468127 -0.1466333 -0.1464784 -0.1463542 -0.1462664 -0.1462202 -0.1462195 -0.1462671 -0.1463640 -0.1465083 -0.1466936 -0.1469118 -0.1471548 -0.1474143 -0.1476826 -0.1479526 -0.1482183 -0.1484746 -0.1487176 -0.1489446 -0.1491536 -0.1493437 -0.1495146 -0.1496667 -0.1498009 -0.1499181 -0.1500198 -0.1501074 -0.1501823 -0.1502460 -0.1503000 -0.1503455 -0.1503837 -0.1504156 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645 -0.1498645
Dlx4 3.0000000 3.0000000 3.0000000 2.8427876 1.6101956 0.8538933 0.4138024 0.1653217 0.0268668 -0.0501313 -0.0931781 -0.1174851 -0.1313922 -0.1394730 -0.1442496 -0.1471257 -0.1488911 -0.1499962 -0.1507014 -0.1511597 -0.1514621 -0.1516651 -0.1518036 -0.1518991 -0.1519647 -0.1520089 -0.1520367 -0.1520516 -0.1520555 -0.1520491 -0.1520329 -0.1520062 -0.1519679 -0.1519163 -0.1518489 -0.1517621 -0.1516517 -0.1515119 -0.1513354 -0.1511133 -0.1508343 -0.1504848 -0.1500482 -0.1495053 -0.1488335 -0.1480079 -0.1470014 -0.1457863 -0.1443367 -0.1426308 -0.1406557 -0.1384116 -0.1359172 -0.1332152 -0.1303764 -0.1275021 -0.1247230 -0.1221940 -0.1200835 -0.1185588 -0.1177668 -0.1178144 -0.1187504 -0.1205527 -0.1231253 -0.1263053 -0.1298803 -0.1336146 -0.1372779 -0.1406724 -0.1436534 -0.1461386 -0.1481071 -0.1495889 -0.1506487 -0.1513676 -0.1518291 -0.1521101 -0.1522731 -0.1523634 -0.1524113 -0.1524356 -0.1524476 -0.1524532 -0.1524558 -0.1524569 -0.1524574 -0.1524576 -0.1524577 -0.1524577 -0.1524577 -0.1524577 -0.1524577 -0.1524577 -0.1524577 -0.1524577 -0.1524577 -0.1524577 -0.1524577 -0.1524577 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892 -0.1523892
Foxn4 3.0000000 3.0000000 3.0000000 2.1761451 1.1201506 0.5368860 0.2227962 0.0554831 -0.0334827 -0.0809687 -0.1065029 -0.1203703 -0.1279912 -0.1322360 -0.1346354 -0.1360136 -0.1368188 -0.1372978 -0.1375880 -0.1377674 -0.1378804 -0.1379532 -0.1380012 -0.1380336 -0.1380559 -0.1380716 -0.1380829 -0.1380910 -0.1380970 -0.1381014 -0.1381047 -0.1381071 -0.1381089 -0.1381101 -0.1381108 -0.1381112 -0.1381112 -0.1381109 -0.1381103 -0.1381094 -0.1381081 -0.1381063 -0.1381042 -0.1381015 -0.1380983 -0.1380943 -0.1380895 -0.1380837 -0.1380767 -0.1380683 -0.1380582 -0.1380462 -0.1380318 -0.1380147 -0.1379944 -0.1379704 -0.1379420 -0.1379089 -0.1378703 -0.1378256 -0.1377744 -0.1377163 -0.1376510 -0.1375784 -0.1374989 -0.1374132 -0.1373223 -0.1372280 -0.1371324 -0.1370383 -0.1369488 -0.1368674 -0.1367979 -0.1367439 -0.1367087 -0.1366946 -0.1367014 -0.1367281 -0.1367728 -0.1368328 -0.1369052 -0.1369870 -0.1370750 -0.1371664 -0.1372584 -0.1373489 -0.1374360 -0.1375183 -0.1375948 -0.1376649 -0.1377284 -0.1377851 -0.1378353 -0.1378793 -0.1379175 -0.1379505 -0.1379788 -0.1380029 -0.1380233 -0.1380406 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507 -0.1378507
Meox1 3.0000000 3.0000000 3.0000000 1.7210060 0.7659782 0.3004083 0.0786401 -0.0269331 -0.0778247 -0.1028637 -0.1155026 -0.1220706 -0.1255923 -0.1275416 -0.1286538 -0.1293040 -0.1296880 -0.1299093 -0.1300218 -0.1300494 -0.1299951 -0.1298489 -0.1295881 -0.1291683 -0.1285179 -0.1275309 -0.1260624 -0.1239348 -0.1209661 -0.1170370 -0.1122036 -0.1068336 -0.1017013 -0.0979282 -0.0966823 -0.0986776 -0.1037184 -0.1106264 -0.1177091 -0.1235206 -0.1274127 -0.1295487 -0.1305064 -0.1308552 -0.1309575 -0.1309814 -0.1309858 -0.1309864 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309865 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864 -0.1309864
Trp73 3.0000000 3.0000000 3.0000000 2.3163313 1.2061704 0.5769397 0.2323641 0.0464987 -0.0535085 -0.1076135 -0.1371966 -0.1536016 -0.1628515 -0.1681649 -0.1712789 -0.1731427 -0.1742826 -0.1749945 -0.1754480 -0.1757416 -0.1759336 -0.1760599 -0.1761431 -0.1761967 -0.1762288 -0.1762440 -0.1762450 -0.1762329 -0.1762077 -0.1761684 -0.1761132 -0.1760391 -0.1759421 -0.1758170 -0.1756570 -0.1754539 -0.1751976 -0.1748761 -0.1744757 -0.1739817 -0.1733787 -0.1726523 -0.1717912 -0.1707903 -0.1696534 -0.1683978 -0.1670575 -0.1656857 -0.1643551 -0.1631554 -0.1621858 -0.1615449 -0.1613164 -0.1615544 -0.1622708 -0.1634285 -0.1649424 -0.1666898 -0.1685285 -0.1703185 -0.1719427 -0.1733216 -0.1744187 -0.1752373 -0.1758100 -0.1761853 -0.1764154 -0.1765474 -0.1766180 -0.1766532 -0.1766695 -0.1766765 -0.1766793 -0.1766803 -0.1766807 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1324092 -0.1760961 -0.1766730 -0.1766807 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766804 -0.1766777 -0.1766601 -0.1765572 -0.1760325 -0.1737198 -0.1650086 -0.1373424 -0.0644799 0.0912282 0.3534647 0.6866658 0.9772140 1.0873676 0.9527680 0.6443367 0.3102689 0.0602715 -0.0811194 -0.1443209 -0.1673557 -0.1743649 -0.1761792 -0.1765849 -0.1766645 -0.1766783 -0.1766805 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808 -0.1766808
Zfp474 3.0000000 3.0000000 3.0000000 3.0000000 2.7091382 1.9024854 1.3079230 0.8743121 0.5602421 0.3336098 0.1702783 0.0524814 -0.0326715 -0.0944461 -0.1394648 -0.1724476 -0.1967552 -0.2147826 -0.2282396 -0.2383502 -0.2459946 -0.2518232 -0.2563144 -0.2598093 -0.2625529 -0.2647233 -0.2664514 -0.2678339 -0.2689433 -0.2698339 -0.2705473 -0.2711147 -0.2715605 -0.2719030 -0.2721564 -0.2723314 -0.2724362 -0.2724767 -0.2724572 -0.2723802 -0.2722476 -0.2720596 -0.2718161 -0.2715159 -0.2711571 -0.2707373 -0.2702535 -0.2697023 -0.2690799 -0.2683823 -0.2676052 -0.2667445 -0.2657961 -0.2647562 -0.2636217 -0.2623903 -0.2610609 -0.2596336 -0.2581107 -0.2564964 -0.2547979 -0.2530249 -0.2511909 -0.2493128 -0.2474113 -0.2455112 -0.2436413 -0.2418336 -0.2401238 -0.2385498 -0.2371511 -0.2359676 -0.2350381 -0.2343989 -0.2340819 -0.2341050 -0.2344576 -0.2351186 -0.2360614 -0.2372551 -0.2386656 -0.2402573 -0.2419942 -0.2438408 -0.2457633 -0.2477299 -0.2497120 -0.2516840 -0.2536237 -0.2555126 -0.2573353 -0.2590801 -0.2607379 -0.2623027 -0.2637707 -0.2651404 -0.2664119 -0.2675868 -0.2686681 -0.2696593 -0.2599954 -0.2600577 -0.2601170 -0.2601702 -0.2602145 -0.2602470 -0.2602649 -0.2602654 -0.2602454 -0.2602020 -0.2601322 -0.2600327 -0.2599001 -0.2597307 -0.2595207 -0.2592657 -0.2589610 -0.2586015 -0.2581812 -0.2576935 -0.2571311 -0.2564853 -0.2557464 -0.2549032 -0.2539427 -0.2528498 -0.2516080 -0.2502047 -0.2486276 -0.2468632 -0.2448965 -0.2427106 -0.2402871 -0.2376061 -0.2346457 -0.2313824 -0.2277911 -0.2238452 -0.2195163 -0.2147748 -0.2095900 -0.2039302 -0.1977634 -0.1910573 -0.1837803 -0.1759017 -0.1673930 -0.1582282 -0.1483854 -0.1378474 -0.1266033 -0.1146498 -0.1019925 -0.0886474 -0.0746426 -0.0600195 -0.0448343 -0.0291594 -0.0130842 0.0032840 0.0198197 0.0363792 0.0528010 0.0689075 0.0845059 0.0993917 0.1133508 0.1261642 0.1376120 0.1474784 0.1555574 0.1616584 0.1656120 0.1672763 0.1665418 0.1633366 0.1576307 0.1494390 0.1388234 0.1258928 0.1108070 0.0938634 0.0754688 0.0560245 0.0359109 0.0154788 -0.0049571 -0.0251224 -0.0447848 -0.0637542 -0.0818815 -0.0990559 -0.1152014 -0.1302729 -0.1442520 -0.1571428 -0.1689672 -0.1797615 -0.1895727 -0.1984554
Rfx2 3.0000000 3.0000000 3.0000000 3.0000000 3.0000000 2.6299383 2.1602052 1.7466493 1.3833599 1.0648381 0.7860300 0.5423390 0.3296225 0.1441768 -0.0172866 -0.1576681 -0.2795111 -0.3850326 -0.4761539 -0.5545289 -0.6215808 -0.6787371 -0.7273945 -0.7687109 -0.8036411 -0.8329740 -0.8573625 -0.8773473 -0.8933763 -0.9058203 -0.9149857 -0.9211246 -0.9244439 -0.9251120 -0.9232647 -0.9190105 -0.9124348 -0.9036034 -0.8925660 -0.8793591 -0.8640088 -0.8465329 -0.8269443 -0.8052524 -0.7814662 -0.7555966 -0.7276586 -0.6976746 -0.6656763 -0.6317081 -0.5958296 -0.5581188 -0.5186748 -0.4776210 -0.4351074 -0.3913141 -0.3464532 -0.3007707 -0.2545491 -0.2081075 -0.1618025 -0.1160281 -0.0712137 -0.0278223 0.0136529 0.0526938 0.0887627 0.1213101 0.1497828 0.1736337 0.1923328 0.2053786 0.2123104 0.2127210 0.2062696 0.1928429 0.1728066 0.1466546 0.1149286 0.0782050 0.0370819 -0.0078330 -0.0559331 -0.1066235 -0.1593289 -0.2135016 -0.2686266 -0.3242269 -0.3798662 -0.4351515 -0.4897334 -0.5433065 -0.5956086 -0.6464186 -0.6955552 -0.7428735 -0.7882627 -0.8316429 -0.8729616 -0.9121910 -0.9770792 -0.9293215 -0.8780563 -0.8231620 -0.7645381 -0.7021108 -0.6358380 -0.5657160 -0.4917860 -0.4141398 -0.3329274 -0.2483625 -0.1607290 -0.0703857 0.0222284 0.1165919 0.2120984 0.3080571 0.4036940 0.4981570 0.5905218 0.6798013 0.7649576 0.8449161 0.9185827 0.9848631 1.0427641 1.0918346 1.1319079 1.1629277 1.1849425 1.1980989 1.2026338 1.1988654 1.1871833 1.1680379 1.1419300 1.1094000 1.0710177 1.0273724 0.9790632 0.9266907 0.8708492 0.8121195 0.7510634 0.6882180 0.6240923 0.5591634 0.4938748 0.4286342 0.3638133 0.2997474 0.2367359 0.1750433 0.1149006 0.0565071 0.0000321 -0.0543824 -0.1066196 -0.1565857 -0.2042069 -0.2494273 -0.2922062 -0.3325158 -0.3703390 -0.4056667 -0.4384960 -0.4688280 -0.4966657 -0.5220120 -0.5448678 -0.5652304 -0.5830911 -0.5984337 -0.6112323 -0.6214494 -0.6290336 -0.6339169 -0.6360128 -0.6352122 -0.6313871 -0.6245183 -0.6146979 -0.6020026 -0.5864918 -0.5682105 -0.5471926 -0.5234636 -0.4970434 -0.4679490 -0.4361974 -0.4018081 -0.3648059 -0.3252241 -0.2831073 -0.2385143 -0.1915215 -0.1422258 -0.0907479 -0.0372354
4930522L14Rik 3.0000000 3.0000000 3.0000000 2.7332755 2.1380942 1.6222859 1.1765404 0.7922605 0.4616255 0.1776114 -0.0660232 -0.2747727 -0.4534353 -0.6061720 -0.7365681 -0.8476946 -0.9421662 -1.0221955 -1.0896414 -1.1460510 -1.1927066 -1.2308793 -1.2618025 -1.2864635 -1.3056442 -1.3199617 -1.3298994 -1.3358315 -1.3380415 -1.3367376 -1.3320635 -1.3241082 -1.3129130 -1.2984775 -1.2807648 -1.2597048 -1.2351987 -1.2071219 -1.1753272 -1.1396487 -1.0999049 -1.0559028 -1.0074429 -0.9543244 -0.8963513 -0.8333398 -0.7651262 -0.6915767 -0.6125975 -0.5281465 -0.4382458 -0.3429954 -0.2425865 -0.1373165 -0.0276018 0.0860080 0.2028195 0.3219855 0.4424993 0.5631915 0.6827334 0.7996438 0.9123038 1.0189774 1.1178393 1.2070102 1.2845984 1.3487483 1.3976931 1.4298125 1.4436911 1.4381771 1.4124383 1.3660118 1.2988471 1.2117533 1.1070267 0.9873470 0.8554883 0.7142311 0.5662837 0.4142151 0.2604014 0.1069848 -0.0441534 -0.1914079 -0.3334528 -0.4692353 -0.5979622 -0.7190796 -0.8322487 -0.9373190 -1.0343007 -1.1233367 -1.2046763 -1.2786506 -1.3456504 -1.4061066 -1.4604734 -1.5092146 -1.3785665 -1.3389184 -1.2964547 -1.2510652 -1.2026507 -1.1511264 -1.0964253 -1.0385024 -0.9773380 -0.9129424 -0.8453604 -0.7746750 -0.7010127 -0.6245471 -0.5455029 -0.4641598 -0.3808550 -0.2959859 -0.2100112 -0.1234510 -0.0368862 0.0490438 0.1336453 0.2161750 0.2958478 0.3718447 0.4433774 0.5099846 0.5713709 0.6272961 0.6775749 0.7220776 0.7607290 0.7935064 0.8204376 0.8415978 0.8571065 0.8671231 0.8718436 0.8714957 0.8663350 0.8566400 0.8427084 0.8248524 0.8033952 0.7786665 0.7509997 0.7207282 0.6881826 0.6536881 0.6175624 0.5801133 0.5416380 0.5024207 0.4627325 0.4228307 0.3829576 0.3433416 0.3041960 0.2657203 0.2281001 0.1915080 0.1561045 0.1220384 0.0894485 0.0584642 0.0292071 0.0017919 -0.0236718 -0.0470785 -0.0683248 -0.0873086 -0.1039266 -0.1180732 -0.1296385 -0.1385063 -0.1445521 -0.1476410 -0.1476251 -0.1443412 -0.1376148 -0.1274169 -0.1138652 -0.0970710 -0.0771345 -0.0541475 -0.0281952 0.0006406 0.0322802 0.0666435 0.1036479 0.1432063 0.1852255 0.2296036 0.2762286 0.3249764 0.3757088 0.4282719 0.4824946 0.5381865
Trp63 3.0000000 3.0000000 3.0000000 3.0000000 3.0000000 2.4440120 1.8610076 1.3810089 0.9860661 0.6611644 0.3938254 0.1737347 -0.0075957 -0.1571252 -0.2805427 -0.3824869 -0.4667317 -0.5363407 -0.5937950 -0.6410979 -0.6798667 -0.7115425 -0.7373947 -0.7584162 -0.7753816 -0.7888967 -0.7994353 -0.8073674 -0.8129797 -0.8164923 -0.8180704 -0.8178341 -0.8158656 -0.8122147 -0.8069032 -0.7999285 -0.7912661 -0.7808721 -0.7686850 -0.7546273 -0.7386073 -0.7205206 -0.7002520 -0.6776778 -0.6526678 -0.6250887 -0.5948071 -0.5616940 -0.5256297 -0.4865092 -0.4442489 -0.3987940 -0.3501269 -0.2982759 -0.2433248 -0.1854229 -0.1247952 -0.0617515 0.0033041 0.0698664 0.1373235 0.2049541 0.2719288 0.3373146 0.4000853 0.4591366 0.5133068 0.5614038 0.6022363 0.6346511 0.6575734 0.6700492 0.6712888 0.6607076 0.6379644 0.6032419 0.5576448 0.5025549 0.4394570 0.3698832 0.2953614 0.2173703 0.1373022 0.0564340 -0.0240938 -0.1032899 -0.1803177 -0.2544952 -0.3252889 -0.3923049 -0.4552754 -0.5140452 -0.5685562 -0.6188318 -0.6649619 -0.7070893 -0.7453962 -0.7800933 -0.8114096 -0.8395842 -0.6817129 -0.6643459 -0.6462597 -0.6274545 -0.6079342 -0.5877072 -0.5667863 -0.5451897 -0.5229412 -0.5000704 -0.4766137 -0.4526141 -0.4281222 -0.4031959 -0.3779011 -0.3523121 -0.3265111 -0.3005891 -0.2746452 -0.2487870 -0.2231302 -0.1977979 -0.1729210 -0.1486365 -0.1250876 -0.1024223 -0.0807815 -0.0602377 -0.0408325 -0.0226004 -0.0055692 0.0102405 0.0248146 0.0381459 0.0502333 0.0610824 0.0707044 0.0791164 0.0863405 0.0924040 0.0973385 0.1011801 0.1039684 0.1057464 0.1065601 0.1064580 0.1054908 0.1037110 0.1011725 0.0979302 0.0940399 0.0895578 0.0845403 0.0790437 0.0731240 0.0668368 0.0602369 0.0533783 0.0463141 0.0390961 0.0317753 0.0244013 0.0170225 0.0096860 0.0024377 -0.0046776 -0.0116164 -0.0183362 -0.0247958 -0.0309545 -0.0367728 -0.0422116 -0.0472325 -0.0517974 -0.0558685 -0.0594080 -0.0623778 -0.0647395 -0.0664542 -0.0674818 -0.0677831 -0.0673565 -0.0662377 -0.0644632 -0.0620680 -0.0590865 -0.0555526 -0.0514997 -0.0469608 -0.0419691 -0.0365580 -0.0307609 -0.0246118 -0.0181452 -0.0113963 -0.0044010 0.0028039 0.0101805 0.0176902 0.0252930
Rax 1.6479983 1.3412414 1.0808509 0.8603841 0.6741103 0.5169880 0.3846232 0.2732177 0.1795111 0.1007219 0.0344898 -0.0211790 -0.0679611 -0.1072614 -0.1402530 -0.1679114 -0.1910447 -0.2103190 -0.2262799 -0.2393697 -0.2499451 -0.2583492 -0.2649075 -0.2698731 -0.2734399 -0.2757545 -0.2769259 -0.2770314 -0.2761225 -0.2742286 -0.2713597 -0.2675085 -0.2626525 -0.2567545 -0.2497640 -0.2416177 -0.2322402 -0.2215444 -0.2094321 -0.1957949 -0.1805153 -0.1634675 -0.1445197 -0.1235357 -0.1003782 -0.0749122 -0.0470090 -0.0165520 0.0165578 0.0523942 0.0909980 0.1323680 0.1764515 0.2231340 0.2722291 0.3234689 0.3764943 0.4308482 0.4859698 0.5411929 0.5957472 0.6487652 0.6992938 0.7463122 0.7887554 0.8255443 0.8556205 0.8779860 0.8917457 0.8961505 0.8906391 0.8748757 0.8487806 0.8125512 0.7666720 0.7121084 0.6505485 0.5838062 0.5136490 0.4417351 0.3695650 0.2984471 0.2294793 0.1635419 0.1013029 0.0432308 -0.0103860 -0.0594155 -0.1038573 -0.1438171 -0.1794822 -0.2110991 -0.2389543 -0.2633569 -0.2846251 -0.3030755 -0.3190144 -0.3327320 -0.3444988 -0.3545626 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130089 -0.4129843 -0.4114104 -0.3641385 0.2584693 3.0000000 3.0000000 3.0000000 2.3774517 -0.0949368 -0.4011900 -0.4128731 -0.4130086 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4130091 -0.4058086
Gtf2i 3.0000000 3.0000000 3.0000000 2.9010656 2.6166583 2.3391552 2.0691658 1.8072621 1.5539809 1.3098260 1.0752715 0.8507641 0.6367268 0.4335618 0.2416539 0.0613747 -0.1069144 -0.2628577 -0.4061013 -0.5362890 -0.6530792 -0.7566154 -0.8475106 -0.9263617 -0.9937303 -1.0501463 -1.0961107 -1.1320985 -1.1585614 -1.1759306 -1.1846188 -1.1850229 -1.1775257 -1.1624981 -1.1403013 -1.1112880 -1.0758047 -1.0341929 -0.9867906 -0.9339342 -0.8759592 -0.8132017 -0.7459998 -0.6746943 -0.5996298 -0.5211557 -0.4396272 -0.3554053 -0.2688584 -0.1803622 -0.0903004 0.0009349 0.0929430 0.1853142 0.2776303 0.3694638 0.4603786 0.5499301 0.6376653 0.7231235 0.8058369 0.8853309 0.9611253 1.0327349 1.0996705 1.1614402 1.2175505 1.2675077 1.3108194 1.3469958 1.3755517 1.3960081 1.4078942 1.4107492 1.4041248 1.3877900 1.3620713 1.3273978 1.2842086 1.2329514 1.1740803 1.1080545 1.0353363 0.9563898 0.8716794 0.7816683 0.6868176 0.5875847 0.4844223 0.3777776 0.2680915 0.1557974 0.0413207 -0.0749217 -0.1925220 -0.3110819 -0.4302133 -0.5495378 -0.6686875 -0.7873050 0.3149047 0.2376254 0.1608474 0.0847254 0.0094110 -0.0649465 -0.1382008 -0.2102080 -0.2808267 -0.3499179 -0.4173447 -0.4829726 -0.5466687 -0.6083023 -0.6677440 -0.7248660 -0.7795419 -0.8316460 -0.8810537 -0.9276409 -0.9712840 -1.0118592 -1.0492429 -1.0833108 -1.1139379 -1.1409983 -1.1643907 -1.1841694 -1.2004448 -1.2133243 -1.2229127 -1.2293127 -1.2326244 -1.2329461 -1.2303744 -1.2250040 -1.2169285 -1.2062400 -1.1930295 -1.1773872 -1.1594024 -1.1391637 -1.1167594 -1.0922772 -1.0658048 -1.0374295 -1.0072389 -0.9753205 -0.9417621 -0.9066518 -0.8700781 -0.8321301 -0.7928974 -0.7524703 -0.7109398 -0.6683978 -0.6249369 -0.5806509 -0.5356343 -0.4899828 -0.4437932 -0.3971631 -0.3501916 -0.3029787 -0.2556256 -0.2082348 -0.1609097 -0.1137552 -0.0668770 -0.0203822 0.0256211 0.0710237 0.1157153 0.1595847 0.2025198 0.2444073 0.2851336 0.3245837 0.3626425 0.3991940 0.4341260 0.4674203 0.4991537 0.5294077 0.5582651 0.5858095 0.6121255 0.6372983 0.6614141 0.6845596 0.7068223 0.7282901 0.7490516 0.7691959 0.7888126 0.8079916 0.8268233 0.8453987 0.8638090 0.8821457
Zfp467 3.0000000 3.0000000 3.0000000 3.0000000 3.0000000 3.0000000 2.9727172 2.7242319 2.4871356 2.2614799 2.0472729 1.8444858 1.6530589 1.4729082 1.3039309 1.1460119 0.9990286 0.8628568 0.7373759 0.6224741 0.5180387 0.4236548 0.3386330 0.2623321 0.1941674 0.1336046 0.0801551 0.0333705 -0.0071615 -0.0418211 -0.0709597 -0.0949038 -0.1139577 -0.1284062 -0.1385173 -0.1445444 -0.1467288 -0.1453010 -0.1404833 -0.1324909 -0.1215340 -0.1078187 -0.0915487 -0.0729264 -0.0521543 -0.0294354 -0.0049750 0.0210192 0.0483359 0.0767598 0.1060708 0.1360437 0.1664479 0.1970471 0.2275990 0.2578554 0.2875626 0.3164611 0.3442863 0.3707688 0.3956352 0.4186087 0.4394099 0.4577582 0.4733726 0.4859731 0.4952820 0.5010259 0.5029368 0.5007543 0.4942273 0.4831160 0.4671942 0.4462510 0.4200935 0.3886626 0.3522203 0.3110889 0.2655971 0.2160775 0.1628650 0.1062942 0.0466978 -0.0155956 -0.0802625 -0.1469867 -0.2154600 -0.2853836 -0.3564692 -0.4284396 -0.5010298 -0.5739869 -0.6470712 -0.7200560 -0.7927279 -0.8648870 -0.9363465 -1.0069328 -1.0764852 -1.1448555 -1.0669606 -1.0069662 -0.9461261 -0.8845978 -0.8225500 -0.7601623 -0.6976256 -0.6351419 -0.5729246 -0.5111981 -0.4501974 -0.3901679 -0.3313646 -0.2740520 -0.2185026 -0.1649965 -0.1138200 -0.0652647 -0.0196259 0.0227987 0.0617110 0.0968136 0.1278123 0.1544177 0.1763476 0.1933288 0.2051451 0.2118677 0.2136864 0.2108060 0.2034445 0.1918309 0.1762034 0.1568077 0.1338950 0.1077206 0.0785423 0.0466186 0.0122079 -0.0244331 -0.0630504 -0.1033940 -0.1452182 -0.1882829 -0.2323541 -0.2772045 -0.3226139 -0.3683695 -0.4142662 -0.4601067 -0.5057019 -0.5508702 -0.5954379 -0.6392391 -0.6821148 -0.7239134 -0.7644896 -0.8037045 -0.8414248 -0.8775220 -0.9118727 -0.9443567 -0.9748576 -1.0032609 -1.0294540 -1.0533253 -1.0747629 -1.0936542 -1.1098844 -1.1233363 -1.1338883 -1.1414139 -1.1457804 -1.1468474 -1.1444656 -1.1384754 -1.1287051 -1.1149695 -1.0970677 -1.0747813 -1.0478804 -1.0163027 -0.9801591 -0.9395604 -0.8946117 -0.8454142 -0.7920681 -0.7346738 -0.6733344 -0.6081577 -0.5392579 -0.4667578 -0.3907903 -0.3115006 -0.2290476 -0.1436060 -0.0553676 0.0354570 0.1286370 0.2239200
Aebp2 3.0000000 3.0000000 3.0000000 2.9006852 2.5882146 2.2924460 2.0132177 1.7502867 1.5033440 1.2720279 1.0559374 0.8546441 0.6677035 0.4946647 0.3350796 0.1885114 0.0545422 -0.0672206 -0.1771372 -0.2755302 -0.3626930 -0.4392098 -0.5059197 -0.5635770 -0.6128479 -0.6543210 -0.6885174 -0.7158989 -0.7368753 -0.7518108 -0.7610302 -0.7648238 -0.7634522 -0.7571499 -0.7461302 -0.7305874 -0.7107011 -0.6866384 -0.6585570 -0.6266079 -0.5909374 -0.5516901 -0.5090105 -0.4630456 -0.4139469 -0.3618720 -0.3069871 -0.2494684 -0.1895040 -0.1272956 -0.0630599 0.0029697 0.0705422 0.1393875 0.2092156 0.2797159 0.3505565 0.4213840 0.4918236 0.5614791 0.6299337 0.6967510 0.7614763 0.8236381 0.8827505 0.9383157 0.9898267 1.0367710 1.0786342 1.1149043 1.1450762 1.1686567 1.1851695 1.1941613 1.1952072 1.1880900 1.1730943 1.1506139 1.1210700 1.0849059 1.0425820 0.9945711 0.9413540 0.8834150 0.8212382 0.7553037 0.6860844 0.6140433 0.5396304 0.4632809 0.3854134 0.3064277 0.2267046 0.1466042 0.0664654 -0.0133938 -0.0926773 -0.1711100 -0.2484380 -0.3244275 0.0908729 0.1075271 0.1240900 0.1404003 0.1562942 0.1716056 0.1861663 0.1998060 0.2123531 0.2236347 0.2334772 0.2417070 0.2481508 0.2526366 0.2549941 0.2550557 0.2526573 0.2476395 0.2398479 0.2291347 0.2153596 0.1983907 0.1781058 0.1543934 0.1271538 0.0963005 0.0618025 0.0238940 -0.0170949 -0.0608353 -0.1070025 -0.1552777 -0.2053493 -0.2569148 -0.3096815 -0.3633681 -0.4177047 -0.4724343 -0.5273123 -0.5821075 -0.6366018 -0.6905902 -0.7438806 -0.7962936 -0.8476620 -0.8978300 -0.9466532 -0.9939974 -1.0397380 -1.0837592 -1.1259534 -1.1662198 -1.2044638 -1.2405961 -1.2745313 -1.3061874 -1.3354843 -1.3623431 -1.3866844 -1.4084279 -1.4274906 -1.4437857 -1.4572216 -1.4677000 -1.4751147 -1.4793503 -1.4802799 -1.4777637 -1.4716471 -1.4617582 -1.4479055 -1.4298755 -1.4074293 -1.3802998 -1.3481874 -1.3107566 -1.2676303 -1.2183854 -1.1625462 -1.0995775 -1.0288872 -0.9500540 -0.8628514 -0.7670356 -0.6623394 -0.5484754 -0.4251406 -0.2920204 -0.1487936 0.0048624 0.1692658 0.3447239 0.5315258 0.7299352 0.9401817 1.1624516 1.3968787 1.6435342 1.9024153 2.1734355
Zfp72 -0.1068257 -0.1082476 -0.1096319 -0.1109496 -0.1121727 -0.1132733 -0.1142241 -0.1149979 -0.1155676 -0.1159059 -0.1159851 -0.1157764 -0.1152505 -0.1143762 -0.1131206 -0.1114485 -0.1093218 -0.1066989 -0.1035342 -0.0997770 -0.0953725 -0.0902997 -0.0845751 -0.0782161 -0.0712411 -0.0636696 -0.0555235 -0.0468279 -0.0376120 -0.0279099 -0.0177618 -0.0072143 0.0036786 0.0148545 0.0262423 0.0377618 0.0493230 0.0608262 0.0721620 0.0832117 0.0938479 0.1039353 0.1133322 0.1218923 0.1294662 0.1359043 0.1410595 0.1447899 0.1469625 0.1474564 0.1461663 0.1430065 0.1379136 0.1308501 0.1218067 0.1108046 0.0978970 0.0831694 0.0667393 0.0487552 0.0293942 0.0088584 -0.0126286 -0.0348272 -0.0574872 -0.0803535 -0.1031732 -0.1257008 -0.1477050 -0.1689738 -0.1893191 -0.2085808 -0.2266293 -0.2433672 -0.2587296 -0.2726727 -0.2851648 -0.2962185 -0.3058865 -0.3142510 -0.3214142 -0.3274902 -0.3325978 -0.3368553 -0.3403761 -0.3432661 -0.3456218 -0.3475296 -0.3490653 -0.3502945 -0.3512732 -0.3520488 -0.3526607 -0.3531415 -0.3535179 -0.3538116 -0.3540402 -0.3542175 -0.3543549 -0.3544611 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548201 -0.3548201 -0.3548197 -0.3548168 -0.3547989 -0.3546966 -0.3541770 -0.3518357 -0.3425530 -0.3104462 -0.2144988 0.0303961 0.5565596 1.4899981 2.8241577 3.0000000 3.0000000 3.0000000 3.0000000 3.0000000 3.0000000 2.4340754 1.3172036 0.5437217 0.0807318 -0.1631119 -0.2776894 -0.3262701 -0.3450365 -0.3516971 -0.3538858 -0.3545566 -0.3547496 -0.3548021 -0.3548157 -0.3548191 -0.3548199 -0.3548201 -0.3548201 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548202 -0.3548201 -0.3548201 -0.3548198 -0.3548161 -0.3547758 -0.3543268 -0.3492812
Prrx2 -0.5270924 -0.5432961 -0.5591853 -0.5746522 -0.5895943 -0.6039139 -0.6175177 -0.6303164 -0.6422238 -0.6531563 -0.6630322 -0.6717705 -0.6792906 -0.6855109 -0.6903479 -0.6937152 -0.6955222 -0.6956729 -0.6940643 -0.6905853 -0.6851185 -0.6776346 -0.6681947 -0.6568575 -0.6436760 -0.6286993 -0.6119736 -0.5935432 -0.5734519 -0.5517439 -0.5284652 -0.5036644 -0.4773938 -0.4497105 -0.4206773 -0.3903639 -0.3588478 -0.3262151 -0.2925613 -0.2579926 -0.2226263 -0.1865914 -0.1500293 -0.1130944 -0.0759542 -0.0387897 -0.0017952 0.0348220 0.0708417 0.1060314 0.1401475 0.1729363 0.2041350 0.2334739 0.2606781 0.2854694 0.3075693 0.3267010 0.3425931 0.3549822 0.3636164 0.3682588 0.3686910 0.3647168 0.3561660 0.3428974 0.3248029 0.3018105 0.2738869 0.2410408 0.2033245 0.1608356 0.1137186 0.0621643 0.0064107 -0.0531681 -0.1159310 -0.1812084 -0.2483535 -0.3167503 -0.3858200 -0.4550258 -0.5238774 -0.5919327 -0.6588002 -0.7241385 -0.7876562 -0.8491105 -0.9083047 -0.9650859 -1.0193417 -1.0709968 -1.1200093 -1.1663670 -1.2100839 -1.2511963 -1.2897592 -1.3258437 -1.3595328 -1.3909198 -1.5560925 -1.5195933 -1.4778163 -1.4301277 -1.3758563 -1.3143024 -1.2447501 -1.1664840 -1.0788095 -0.9810783 -0.8727181 -0.7532667 -0.6224088 -0.4800166 -0.3261896 -0.1612950 0.0139961 0.1986776 0.3913855 0.5903855 0.7935726 0.9984848 1.2023317 1.4020380 1.5943012 1.7756634 1.9427735 2.0934546 2.2262317 2.3399734 2.4338942 2.5075479 2.5608140 2.5938774 2.6072027 2.6015058 2.5777215 2.5369712 2.4805285 2.4097858 2.3262212 2.2313674 2.1267817 2.0140191 1.8946073 1.7700257 1.6416861 1.5109176 1.3789548 1.2469281 1.1158586 0.9866542 0.8601100 0.7369091 0.6176276 0.5027393 0.3926225 0.2875687 0.1877901 0.0934292 0.0045676 -0.0787652 -0.1565823 -0.2289317 -0.2958880 -0.3575449 -0.4140084 -0.4653901 -0.5118016 -0.5533484 -0.5901253 -0.6222108 -0.6496627 -0.6725129 -0.6907622 -0.7043755 -0.7132747 -0.7173330 -0.7163662 -0.7101236 -0.6982880 -0.6807117 -0.6574252 -0.6284073 -0.5935820 -0.5528251 -0.5059711 -0.4528191 -0.3931395 -0.3266802 -0.2531746 -0.1723493 -0.0839330 0.0123327 0.1166827 0.2293148 0.3503767 0.4799505 0.6180368 0.7645375
Tsc22d1 -1.1912274 -1.1743904 -1.1575144 -1.1405758 -1.1235514 -1.1064175 -1.0891506 -1.0717269 -1.0541227 -1.0363141 -1.0182772 -0.9999877 -0.9814216 -0.9625546 -0.9433622 -0.9238200 -0.9039034 -0.8835876 -0.8628477 -0.8416588 -0.8199973 -0.7978720 -0.7753254 -0.7524012 -0.7291436 -0.7055968 -0.6818053 -0.6578140 -0.6336677 -0.6094115 -0.5850910 -0.5607516 -0.5364394 -0.5122003 -0.4880806 -0.4641269 -0.4403859 -0.4169046 -0.3937300 -0.3709097 -0.3484910 -0.3265217 -0.3050497 -0.2841230 -0.2637897 -0.2440983 -0.2250970 -0.2068344 -0.1893591 -0.1727198 -0.1569651 -0.1421438 -0.1283046 -0.1154962 -0.1037674 -0.0931667 -0.0837426 -0.0755436 -0.0686180 -0.0630138 -0.0587790 -0.0559613 -0.0546081 -0.0547666 -0.0564836 -0.0598056 -0.0647787 -0.0714485 -0.0798602 -0.0900586 -0.1020878 -0.1159914 -0.1318123 -0.1495927 -0.1693743 -0.1911666 -0.2148953 -0.2404722 -0.2678087 -0.2968163 -0.3274065 -0.3594909 -0.3929811 -0.4277890 -0.4638266 -0.5010064 -0.5392411 -0.5784439 -0.6185283 -0.6594085 -0.7009990 -0.7432151 -0.7859725 -0.8291876 -0.8727774 -0.9166598 -0.9607532 -1.0049767 -1.0492502 -1.0934944 -1.6971413 -1.5557266 -1.4133499 -1.2702596 -1.1267121 -0.9829714 -0.8393089 -0.6960030 -0.5533390 -0.4116088 -0.2711101 -0.1321468 0.0049722 0.1399330 0.2724171 0.4021021 0.5286620 0.6517679 0.7710880 0.8862889 0.9970352 1.1029910 1.2038196 1.2991845 1.3887500 1.4721816 1.5491911 1.6197630 1.6839887 1.7419665 1.7938008 1.8396018 1.8794851 1.9135712 1.9419852 1.9648567 1.9823190 1.9945090 2.0015672 2.0036367 2.0008637 1.9933969 1.9813871 1.9649872 1.9443519 1.9196373 1.8910012 1.8586022 1.8226002 1.7831556 1.7404294 1.6945834 1.6457791 1.5941786 1.5399437 1.4832359 1.4242166 1.3630465 1.2998858 1.2348939 1.1682294 1.1000499 1.0305118 0.9597704 0.8879797 0.8152924 0.7418597 0.6678311 0.5933546 0.5185767 0.4436419 0.3686932 0.2938715 0.2193160 0.1451642 0.0715514 -0.0013886 -0.0735243 -0.1447256 -0.2148646 -0.2838190 -0.3515571 -0.4181362 -0.4836166 -0.5480576 -0.6115181 -0.6740562 -0.7357292 -0.7965938 -0.8567061 -0.9161213 -0.9748941 -1.0330786 -1.0907282 -1.1478957 -1.2046331 -1.2609921 -1.3170233 -1.3727772 -1.4283034
Maz 2.7686217 2.4656152 2.1720712 1.8885283 1.6154371 1.3531663 1.1020100 0.8621943 0.6338850 0.4171947 0.2121906 0.0189018 -0.1626736 -0.3325608 -0.4908020 -0.6374485 -0.7725550 -0.8961723 -1.0083411 -1.1090857 -1.1984240 -1.2767294 -1.3447032 -1.4029930 -1.4521834 -1.4928021 -1.5253268 -1.5501908 -1.5677878 -1.5784770 -1.5825870 -1.5804202 -1.5722558 -1.5583537 -1.5389573 -1.5142964 -1.4845900 -1.4500487 -1.4108774 -1.3672770 -1.3194471 -1.2675879 -1.2119017 -1.1525954 -1.0898819 -1.0239815 -0.9551242 -0.8835501 -0.8095118 -0.7332747 -0.6551189 -0.5753395 -0.4942479 -0.4121720 -0.3294573 -0.2464667 -0.1635808 -0.0811977 0.0002670 0.0803811 0.1586963 0.2347494 0.3080636 0.3781500 0.4445095 0.5066345 0.5640122 0.6161262 0.6624602 0.7025007 0.7357409 0.7616839 0.7798468 0.7897650 0.7909966 0.7833132 0.7670165 0.7425164 0.7102442 0.6706490 0.6241938 0.5713518 0.5126035 0.4484330 0.3793253 0.3057637 0.2282267 0.1471862 0.0631051 -0.0235643 -0.1123824 -0.2029231 -0.2947754 -0.3875444 -0.4808517 -0.5743363 -0.6676548 -0.7604816 -0.8525089 -0.9434465 -1.1225758 -0.9995456 -0.8742022 -0.7468282 -0.6177323 -0.4872498 -0.3557431 -0.2236020 -0.0912438 0.0408869 0.1723187 0.3025543 0.4310709 0.5573223 0.6807399 0.8007350 0.9167009 1.0280156 1.1340445 1.2341439 1.3276646 1.4139554 1.4923676 1.5622593 1.6230000 1.6739757 1.7146809 1.7451636 1.7657054 1.7766244 1.7782709 1.7710238 1.7552867 1.7314846 1.7000601 1.6614702 1.6161828 1.5646739 1.5074244 1.4449177 1.3776365 1.3060612 1.2306671 1.1519230 1.0702887 0.9862143 0.9001383 0.8124863 0.7236708 0.6340897 0.5441260 0.4541474 0.3645062 0.2755390 0.1875670 0.1008963 0.0158178 -0.0673915 -0.1484685 -0.2271631 -0.3032371 -0.3764635 -0.4466255 -0.5135151 -0.5769322 -0.6366831 -0.6925790 -0.7444352 -0.7920690 -0.8352981 -0.8739394 -0.9078071 -0.9367105 -0.9604526 -0.9788278 -0.9916199 -0.9985997 -0.9995228 -0.9941266 -0.9821282 -0.9632340 -0.9374263 -0.9049666 -0.8661141 -0.8211166 -0.7702137 -0.7136399 -0.6516275 -0.5844097 -0.5122229 -0.4353097 -0.3539207 -0.2683177 -0.1787750 -0.0855823 0.0109540 0.1105089 0.2127370 0.3172711 0.4237211
heatmap_matrix_ori_q_value_0.01 <- left_join(select(transcription_factors_table_q_value_0.01, gene, pval, qval, num_cells_expressed), heatmap_matrix_ori_q_value_0.01)
write.table(heatmap_matrix_ori_q_value_0.01, file = file.path(tables_directory, "5.1-significant_transcription_factors_beam_analysis_qval_0.01_plot_genes_branched_heatmap_matrix_ori.txt"), sep="\t", quote=FALSE, row.names=FALSE)

2.3 Plotting of genes differentially expressed between branches

2.3.1 Top 10 differentially expressed genes

transcription_factors_table_q_value_5_10_minus_5_ordered_qval <- arrange(transcription_factors_table_q_value_5_10_minus_5, qval)
marker <- transcription_factors_table_q_value_5_10_minus_5_ordered_qval$gene[1]
p1 <- plot_cell_trajectory(monocle, markers=marker)
p2 <- plot_cell_trajectory(monocle, use_color_gradient = TRUE, markers=marker)
show(p1+p2)

marker <- transcription_factors_table_q_value_5_10_minus_5_ordered_qval$gene[2]
p1 <- plot_cell_trajectory(monocle, markers=marker)
p2 <- plot_cell_trajectory(monocle, use_color_gradient = TRUE, markers=marker)
show(p1+p2)

marker <- transcription_factors_table_q_value_5_10_minus_5_ordered_qval$gene[3]
p1 <- plot_cell_trajectory(monocle, markers=marker)
p2 <- plot_cell_trajectory(monocle, use_color_gradient = TRUE, markers=marker)
show(p1+p2)

marker <- transcription_factors_table_q_value_5_10_minus_5_ordered_qval$gene[4]
p1 <- plot_cell_trajectory(monocle, markers=marker)
p2 <- plot_cell_trajectory(monocle, use_color_gradient = TRUE, markers=marker)
show(p1+p2)

marker <- transcription_factors_table_q_value_5_10_minus_5_ordered_qval$gene[5]
p1 <- plot_cell_trajectory(monocle, markers=marker)
p2 <- plot_cell_trajectory(monocle, use_color_gradient = TRUE, markers=marker)
show(p1+p2)

marker <- transcription_factors_table_q_value_5_10_minus_5_ordered_qval$gene[6]
p1 <- plot_cell_trajectory(monocle, markers=marker)
p2 <- plot_cell_trajectory(monocle, use_color_gradient = TRUE, markers=marker)
show(p1+p2)

marker <- transcription_factors_table_q_value_5_10_minus_5_ordered_qval$gene[7]
p1 <- plot_cell_trajectory(monocle, markers=marker)
p2 <- plot_cell_trajectory(monocle, use_color_gradient = TRUE, markers=marker)
show(p1+p2)

marker <- transcription_factors_table_q_value_5_10_minus_5_ordered_qval$gene[8]
p1 <- plot_cell_trajectory(monocle, markers=marker)
p2 <- plot_cell_trajectory(monocle, use_color_gradient = TRUE, markers=marker)
show(p1+p2)

marker <- transcription_factors_table_q_value_5_10_minus_5_ordered_qval$gene[9]
p1 <- plot_cell_trajectory(monocle, markers=marker)
p2 <- plot_cell_trajectory(monocle, use_color_gradient = TRUE, markers=marker)
show(p1+p2)

marker <- transcription_factors_table_q_value_5_10_minus_5_ordered_qval$gene[10]
p1 <- plot_cell_trajectory(monocle, markers=marker)
p2 <- plot_cell_trajectory(monocle, use_color_gradient = TRUE, markers=marker)
show(p1+p2)

3 Session info

sessionInfo()
## R version 3.5.0 (2018-04-23)
## Platform: x86_64-redhat-linux-gnu (64-bit)
## Running under: CentOS Linux 7 (Core)
## 
## Matrix products: default
## BLAS/LAPACK: /var/chroots/hydraex-centos-7/usr/lib64/R/lib/libRblas.so
## 
## locale:
##  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
##  [3] LC_TIME=en_US.UTF-8        LC_COLLATE=en_US.UTF-8    
##  [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
##  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
##  [9] LC_ADDRESS=C               LC_TELEPHONE=C            
## [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
## 
## attached base packages:
##  [1] splines   stats4    parallel  stats     graphics  grDevices utils    
##  [8] datasets  methods   base     
## 
## other attached packages:
##  [1] viridis_0.5.1       viridisLite_0.3.0   forcats_0.4.0      
##  [4] stringr_1.4.0       dplyr_0.8.0.1       purrr_0.3.0        
##  [7] tidyr_0.8.2         tibble_2.0.1        tidyverse_1.2.1    
## [10] Seurat_2.3.4        cowplot_0.9.4       R.utils_2.8.0      
## [13] R.oo_1.22.0         R.methodsS3_1.7.1   readr_1.3.1        
## [16] readxl_1.3.0        patchwork_0.0.1     monocle_2.10.1     
## [19] DDRTree_0.1.5       irlba_2.3.3         VGAM_1.1-1         
## [22] Biobase_2.42.0      BiocGenerics_0.28.0 Matrix_1.2-15      
## [25] kableExtra_1.0.1    ggedit_0.3.0        ggplot2_3.1.0      
## [28] cytokit_0.6.0       pheatmap_1.0.12     colorRamps_2.3     
## 
## loaded via a namespace (and not attached):
##   [1] snow_0.4-3           backports_1.1.3      Hmisc_4.2-0         
##   [4] plyr_1.8.4           igraph_1.2.4         lazyeval_0.2.2      
##   [7] densityClust_0.3     fastICA_1.2-1        digest_0.6.18       
##  [10] foreach_1.4.4        htmltools_0.3.6      lars_1.2            
##  [13] gdata_2.18.0         magrittr_1.5         checkmate_1.9.1     
##  [16] cluster_2.0.7-1      mixtools_1.1.0       ROCR_1.0-7          
##  [19] limma_3.38.3         modelr_0.1.3         matrixStats_0.54.0  
##  [22] docopt_0.6.1         colorspace_1.4-0     ggrepel_0.8.0       
##  [25] rvest_0.3.2          haven_2.0.0          xfun_0.4            
##  [28] sparsesvd_0.1-4      crayon_1.3.4         jsonlite_1.6        
##  [31] survival_2.43-3      zoo_1.8-4            iterators_1.0.10    
##  [34] ape_5.2              glue_1.3.0           gtable_0.2.0        
##  [37] webshot_0.5.1        kernlab_0.9-27       prabclus_2.2-7      
##  [40] DEoptimR_1.0-8       scales_1.0.0         mvtnorm_1.0-8       
##  [43] bibtex_0.4.2         miniUI_0.1.1.1       Rcpp_1.0.0          
##  [46] metap_1.1            dtw_1.20-1           xtable_1.8-3        
##  [49] htmlTable_1.13.1     reticulate_1.11.1    foreign_0.8-71      
##  [52] bit_1.1-14           proxy_0.4-22         mclust_5.4.2        
##  [55] SDMTools_1.1-221     Formula_1.2-3        tsne_0.1-3          
##  [58] htmlwidgets_1.3      httr_1.4.0           FNN_1.1.3           
##  [61] gplots_3.0.1.1       RColorBrewer_1.1-2   shinyAce_0.3.3      
##  [64] fpc_2.1-11.1         acepack_1.4.1        modeltools_0.2-22   
##  [67] ica_1.0-2            pkgconfig_2.0.2      flexmix_2.3-14      
##  [70] nnet_7.3-12          labeling_0.3         tidyselect_0.2.5    
##  [73] rlang_0.3.1          reshape2_1.4.3       later_0.8.0         
##  [76] cellranger_1.1.0     munsell_0.5.0        tools_3.5.0         
##  [79] cli_1.0.1            generics_0.0.2       broom_0.5.1         
##  [82] ggridges_0.5.1       evaluate_0.13        shinyBS_0.61        
##  [85] yaml_2.2.0           npsurv_0.4-0         knitr_1.21          
##  [88] bit64_0.9-7          fitdistrplus_1.0-14  robustbase_0.93-3   
##  [91] caTools_1.17.1.1     randomForest_4.6-14  RANN_2.6.1          
##  [94] pbapply_1.4-0        nlme_3.1-137         mime_0.6            
##  [97] slam_0.1-44          xml2_1.2.0           hdf5r_1.0.0         
## [100] compiler_3.5.0       rstudioapi_0.9.0     png_0.1-7           
## [103] lsei_1.2-0           stringi_1.3.1        highr_0.7           
## [106] lattice_0.20-35      trimcluster_0.1-2.1  HSMMSingleCell_1.2.0
## [109] pillar_1.3.1         combinat_0.0-8       Rdpack_0.10-1       
## [112] lmtest_0.9-36        data.table_1.12.0    bitops_1.0-6        
## [115] gbRd_0.4-11          httpuv_1.5.1         R6_2.4.0            
## [118] latticeExtra_0.6-28  promises_1.0.1       KernSmooth_2.23-15  
## [121] gridExtra_2.3        codetools_0.2-15     MASS_7.3-51.1       
## [124] gtools_3.8.1         assertthat_0.2.0     withr_2.1.2         
## [127] qlcMatrix_0.9.7      diptest_0.75-7       doSNOW_1.0.16       
## [130] hms_0.4.2            grid_3.5.0           rpart_4.1-13        
## [133] class_7.3-14         rmarkdown_1.11       segmented_0.5-3.0   
## [136] Rtsne_0.15           lubridate_1.7.4      shiny_1.2.0         
## [139] base64enc_0.1-3